1 | <?php |
||
7 | abstract class DevelopingDecoratorAbstract implements DevelopingInterface |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var DevelopingInterface |
||
12 | */ |
||
13 | protected $developing; |
||
14 | |||
15 | |||
16 | /** |
||
17 | * @param DevelopingInterface $developing |
||
18 | */ |
||
19 | 6 | public function __construct (DevelopingInterface $developing) |
|
23 | |||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | 6 | public function getTime() : int |
|
32 | |||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | 6 | public function getData() : array |
|
41 | |||
42 | |||
43 | /** |
||
44 | * @inheritDoc |
||
45 | */ |
||
46 | 6 | public function count() |
|
50 | |||
51 | |||
52 | /** |
||
53 | * @inheritDoc |
||
54 | */ |
||
55 | 6 | public function getIterator() |
|
59 | |||
60 | |||
61 | /** |
||
62 | * @inheritDoc |
||
63 | */ |
||
64 | 6 | public function getExposures() : ExposuresInterface |
|
68 | |||
69 | |||
70 | /** |
||
71 | * @inheritDoc |
||
72 | */ |
||
73 | 6 | public function getDensities() : DensitiesInterface |
|
77 | |||
78 | |||
79 | /** |
||
80 | * @inheritDoc |
||
81 | */ |
||
82 | public function has( $logH ) |
||
86 | |||
87 | |||
88 | /** |
||
89 | * @inheritDoc |
||
90 | */ |
||
91 | public function get( $logH ) |
||
95 | } |
||
96 |
This method has been deprecated.