We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c23ffe9 + 7af88b4 commit eeddb2bCopy full SHA for eeddb2b
1 file changed
lib/cli/cli.php
@@ -83,7 +83,7 @@ function line( $msg = '' ) {
83
// func_get_args is empty if no args are passed even with the default above.
84
$args = func_get_args();
85
if( $args ) {
86
- call_user_func_array( array( '\\cli\Streams', 'line' ), $args );
+ call_user_func_array( array( '\\cli\\Streams', 'line' ), $args );
87
} else {
88
\cli\Streams::line();
89
}
@@ -102,7 +102,7 @@ function err( $msg = '' ) {
102
103
104
105
- call_user_func_array( array( '\\cli\Streams', 'err' ), $args );
+ call_user_func_array( array( '\\cli\\Streams', 'err' ), $args );
106
107
\cli\Streams::err();
108
0 commit comments