summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Profiler/Profiler.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-kernel/Profiler/Profiler.php')
-rw-r--r--vendor/symfony/http-kernel/Profiler/Profiler.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/symfony/http-kernel/Profiler/Profiler.php b/vendor/symfony/http-kernel/Profiler/Profiler.php
index 809a3396b9..4a32c78420 100644
--- a/vendor/symfony/http-kernel/Profiler/Profiler.php
+++ b/vendor/symfony/http-kernel/Profiler/Profiler.php
@@ -31,7 +31,7 @@ class Profiler implements ResetInterface
/**
* @var DataCollectorInterface[]
*/
- private $collectors = array();
+ private $collectors = [];
private $logger;
private $initiallyEnabled = true;
@@ -101,7 +101,7 @@ class Profiler implements ResetInterface
}
if (!($ret = $this->storage->write($profile)) && null !== $this->logger) {
- $this->logger->warning('Unable to store the profiler information.', array('configured_storage' => \get_class($this->storage)));
+ $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
}
return $ret;
@@ -196,9 +196,9 @@ class Profiler implements ResetInterface
*
* @param DataCollectorInterface[] $collectors An array of collectors
*/
- public function set(array $collectors = array())
+ public function set(array $collectors = [])
{
- $this->collectors = array();
+ $this->collectors = [];
foreach ($collectors as $collector) {
$this->add($collector);
}