Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7b7eafd

Browse files
committed
CS Fixes
1 parent dfd22bb commit 7b7eafd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'How are you?',
1313
'Where do you come from?',
1414
);
15-
$inputs = ['Foo', 'Bar', 'Baz'];
15+
$inputs = array('Foo', 'Bar', 'Baz');
1616
$stream = fopen('php://memory', 'r+', false);
1717

1818
fputs($stream, implode(PHP_EOL, $inputs));

src/Symfony/Component/Console/Tests/Style/SymfonyStyleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function testLongWordsBlockWrapping()
9292
public function testSetInputStream()
9393
{
9494
$command = $this->command;
95-
$inputs = ['Foo', 'Bar', 'Baz'];
95+
$inputs = array('Foo', 'Bar', 'Baz');
9696
$stream = fopen('php://memory', 'r+', false);
9797

9898
fputs($stream, implode(PHP_EOL, $inputs));

0 commit comments

Comments
 (0)