summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php')
-rw-r--r--vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php b/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php
index 2f7e8dd284..35aa8ea5dc 100644
--- a/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php
+++ b/vendor/symfony/http-kernel/Tests/Profiler/ProfilerTest.php
@@ -44,7 +44,7 @@ class ProfilerTest extends TestCase
public function testReset()
{
$collector = $this->getMockBuilder(DataCollectorInterface::class)
- ->setMethods(array('collect', 'getName', 'reset'))
+ ->setMethods(['collect', 'getName', 'reset'])
->getMock();
$collector->expects($this->any())->method('getName')->willReturn('mock');
$collector->expects($this->once())->method('reset');