File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,21 @@ public function __construct(OutputInterface $output)
2525 $ this ->output = $ output ;
2626 }
2727
28- public function write ($ messages , bool $ newline = false , int $ options = 0 )
28+ public function write ($ messages , $ newline = false , $ options = 0 )
2929 {
3030 $ messages = $ this ->filterMessages ($ messages , $ newline );
3131
3232 $ this ->output ->write ($ messages , $ newline , $ options );
3333 }
3434
35- public function writeln ($ messages , int $ options = 0 )
35+ public function writeln ($ messages , $ options = 0 )
3636 {
3737 $ messages = $ this ->filterMessages ($ messages , true );
3838
3939 $ this ->output ->writeln ($ messages , $ options );
4040 }
4141
42- public function setVerbosity (int $ level )
42+ public function setVerbosity ($ level )
4343 {
4444 $ this ->output ->setVerbosity ($ level );
4545 }
@@ -69,7 +69,7 @@ public function isDebug()
6969 return $ this ->output ->isDebug ();
7070 }
7171
72- public function setDecorated (bool $ decorated )
72+ public function setDecorated ($ decorated )
7373 {
7474 $ this ->output ->setDecorated ($ decorated );
7575 }
You can’t perform that action at this time.
0 commit comments