summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php')
-rw-r--r--vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php b/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
index d5456fe5dc..a0665ef991 100644
--- a/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
+++ b/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
@@ -17,12 +17,12 @@ class TestEventDispatcher extends TraceableEventDispatcher
{
public function getCalledListeners()
{
- return array('foo');
+ return ['foo'];
}
public function getNotCalledListeners()
{
- return array('bar');
+ return ['bar'];
}
public function reset()
@@ -31,6 +31,6 @@ class TestEventDispatcher extends TraceableEventDispatcher
public function getOrphanedEvents()
{
- return array();
+ return [];
}
}