1 | <?php |
||
8 | class Task extends BaseTask |
||
9 | { |
||
10 | /** |
||
11 | * @var int |
||
12 | */ |
||
13 | private $id; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $intervalExpression; |
||
19 | |||
20 | /** |
||
21 | * @return int |
||
22 | */ |
||
23 | public function getId() |
||
27 | |||
28 | /** |
||
29 | * @return mixed |
||
30 | */ |
||
31 | public function getIntervalExpression() |
||
35 | |||
36 | public function getInterval() |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function setInterval(CronExpression $interval, \DateTime $firstExecution = null, \DateTime $lastExecution = null) |
||
54 | } |
||
55 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.