1 | <?php |
||
9 | class NullProgress implements ProgressInterface |
||
10 | { |
||
11 | /** @var Status */ |
||
12 | private $status; |
||
13 | |||
14 | 3 | public function __construct(Status $status = null) |
|
18 | |||
19 | 3 | public function getStatus() |
|
23 | |||
24 | 1 | public function increase($message = null, $increase = 1) |
|
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | * @codeCoverageIgnore null implementation |
||
31 | */ |
||
32 | public function update( |
||
40 | |||
41 | 1 | public function shouldNotifyChange(Status $current, Status $newStatus) |
|
45 | |||
46 | /** |
||
47 | * @inheritdoc |
||
48 | * @codeCoverageIgnore null implementation |
||
49 | */ |
||
50 | public function attach(SplObserver $observer) |
||
53 | |||
54 | /** |
||
55 | * @inheritdoc |
||
56 | * @codeCoverageIgnore null implementation |
||
57 | */ |
||
58 | public function detach(SplObserver $observer) |
||
61 | |||
62 | /** |
||
63 | * @inheritdoc |
||
64 | * @codeCoverageIgnore null implementation |
||
65 | */ |
||
66 | public function notify() |
||
69 | } |
||
70 |