1 | <?php |
||
9 | abstract class Command |
||
10 | { |
||
11 | protected $outputFormatter; |
||
12 | |||
13 | public function __construct(callable $outputFormatter) |
||
17 | |||
18 | abstract protected function run(); |
||
19 | |||
20 | public function __invoke() |
||
30 | |||
31 | protected function echo($msg, bool $eol = true) |
||
42 | |||
43 | protected function echoError($msg, bool $eol = true) |
||
47 | |||
48 | protected function echoInfo($msg, bool $eol = true) |
||
52 | |||
53 | protected function echoNotes($notes) |
||
59 | } |
||
60 |