1 | <?php |
||
23 | class ConsoleProgressWriter implements WriterInterface |
||
24 | { |
||
25 | /** @var ProgressBar */ |
||
26 | protected $progressBar; |
||
27 | |||
28 | /** |
||
29 | * @param ProgressBar $progressBar |
||
30 | * |
||
31 | * @codeCoverageIgnore |
||
32 | */ |
||
33 | public function __construct(ProgressBar $progressBar) |
||
37 | |||
38 | /** |
||
39 | * Write the given item. |
||
40 | * |
||
41 | * @param mixed $item |
||
42 | */ |
||
43 | 1 | public function writeItem($item) |
|
47 | |||
48 | /** |
||
49 | * Prepare the writer. |
||
50 | */ |
||
51 | 1 | public function prepare() |
|
55 | |||
56 | /** |
||
57 | * Finish the writer. |
||
58 | */ |
||
59 | 1 | public function finish() |
|
63 | } |
||
64 |