We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ba949 commit 29e6a7cCopy full SHA for 29e6a7c
src/classes/jblond/cli/Cli.php
@@ -50,8 +50,8 @@ public function output($output){
50
* @param string $string
51
*/
52
public function error($string){
53
- $std_error = fopen('php://stderr', 'w');
54
- fwrite($std_error, $string);
55
- fclose($std_error);
+ $stdError = fopen('php://stderr', 'w');
+ fwrite($stdError, $string);
+ fclose($stdError);
56
}
57
0 commit comments