Skip to content

Commit 9fc40dc

Browse files
authored
Update to use short array syntax
1 parent 3a7a5c2 commit 9fc40dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/DependencyInjection/Compiler/LoggerChannelPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function testTypeHintedAliasesExistForEachChannel()
6161
}
6262

6363
$container = $this->getContainer();
64-
$expectedChannels = array('test', 'foo', 'bar', 'additional');
64+
$expectedChannels = ['test', 'foo', 'bar', 'additional'];
6565

6666
foreach ($expectedChannels as $channelName) {
6767
$aliasName = LoggerInterface::class.' $' .$channelName.'Logger';

0 commit comments

Comments
 (0)