1 | <?php |
||
13 | class SimpleReporter implements PageImportReporter { |
||
14 | |||
15 | private $output; |
||
16 | |||
17 | private $number = 0; |
||
18 | |||
19 | public function __construct( OutputInterface $output ) { |
||
22 | |||
23 | public function started( EntityPage $entityPage ) { |
||
28 | |||
29 | public function endedSuccessfully() { |
||
32 | |||
33 | public function endedWithError( \Exception $ex ) { |
||
37 | |||
38 | public function stepStarted( string $message ) { |
||
40 | |||
41 | public function stepCompleted() { |
||
44 | |||
45 | } |