1 | <?php |
||
12 | class CompositeReporter implements PageImportReporter { |
||
13 | |||
14 | private $firstReporter; |
||
15 | private $secondReporter; |
||
16 | |||
17 | public function __construct( PageImportReporter $firstReporter, PageImportReporter $secondReporter ) { |
||
21 | |||
22 | public function started( EntityPage $entityPage ) { |
||
26 | |||
27 | public function endedSuccessfully() { |
||
31 | |||
32 | public function endedWithError( Exception $ex ) { |
||
36 | |||
37 | public function stepStarted( string $message ) { |
||
41 | |||
42 | public function stepCompleted() { |
||
46 | |||
47 | } |
||
48 |