1 | <?php |
||
14 | class ConsoleOutputResultKeeper extends ResultKeeper |
||
15 | { |
||
16 | private $style; |
||
17 | |||
18 | private $total; |
||
19 | |||
20 | private $line; |
||
21 | |||
22 | public function __construct(OutputInterface $style) |
||
28 | |||
29 | public function addError(Error $error) : void |
||
34 | |||
35 | public function addFailure(Failure $failure) : void |
||
40 | |||
41 | public function addCreated(Created $created) : void |
||
46 | |||
47 | public function addUpdated(Updated $updated) : void |
||
52 | |||
53 | private function print(string $s) : void |
||
68 | } |
||
69 |