1 | <?php |
||
13 | class VerboseReporter implements PageImportReporter { |
||
14 | |||
15 | private $output; |
||
16 | private $veryVerbose; |
||
17 | |||
18 | private $number = 0; |
||
19 | private $stepStartTime; |
||
20 | |||
21 | public function __construct( OutputInterface $output, $veryVerbose = false ) { |
||
25 | |||
26 | public function started( EntityPage $entityPage ) { |
||
31 | |||
32 | public function endedSuccessfully() { |
||
35 | |||
36 | public function endedWithError( \Exception $ex ) { |
||
40 | |||
41 | public function stepStarted( string $message ) { |
||
45 | |||
46 | public function stepCompleted() { |
||
57 | |||
58 | } |