Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7b7eafd

Browse filesBrowse files
committed
CS Fixes
1 parent dfd22bb commit 7b7eafd
Copy full SHA for 7b7eafd

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Tests/Style/SymfonyStyleTest.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.