1 | <?php |
||
15 | abstract class Abstraction implements Task |
||
16 | { |
||
17 | /** |
||
18 | * Is simulation run. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $isSimulation; |
||
23 | |||
24 | /** |
||
25 | * Set is simulation |
||
26 | * |
||
27 | * @param $bool |
||
28 | */ |
||
29 | 18 | public function setSimulation(bool $bool) |
|
33 | |||
34 | /** |
||
35 | * Is simulation getter. |
||
36 | * |
||
37 | * @return bool |
||
38 | */ |
||
39 | 17 | public function isSimulation() : bool |
|
43 | } |
||
44 |