Skip to content

Commit 72d838a

Browse files
committed
fixed CS
1 parent 20123ec commit 72d838a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ CHANGELOG
1212
-----
1313

1414
* environment variables will always be inherited
15-
* added a second `array $env = array()` argument to the `start()`, `run()`,
15+
* added a second `array $env = []` argument to the `start()`, `run()`,
1616
`mustRun()`, and `restart()` methods of the `Process` class
17-
* added a second `array $env = array()` argument to the `start()` method of the
17+
* added a second `array $env = []` argument to the `start()` method of the
1818
`PhpProcess` class
1919
* the `ProcessUtils::escapeArgument()` method has been removed
2020
* the `areEnvironmentVariablesInherited()`, `getOptions()`, and `setOptions()`

Tests/ProcessTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1133,8 +1133,8 @@ public function responsesCodeProvider()
11331133
{
11341134
return [
11351135
//expected output / getter / code to execute
1136-
//array(1,'getExitCode','exit(1);'),
1137-
//array(true,'isSuccessful','exit();'),
1136+
// [1,'getExitCode','exit(1);'],
1137+
// [true,'isSuccessful','exit();'],
11381138
['output', 'getOutput', 'echo \'output\';'],
11391139
];
11401140
}

0 commit comments

Comments
 (0)