| 1 | <?php |
||
| 17 | class Factory |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @return JobRunner |
||
| 21 | */ |
||
| 22 | 2 | public function getJobRunner() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param $url |
||
| 29 | * @param $callback |
||
| 30 | * @param null $additionalData |
||
| 31 | * @param array $options |
||
| 32 | * |
||
| 33 | * @return CallbackCurl |
||
| 34 | */ |
||
| 35 | 1 | public function createCurlJob($url, $callback, $additionalData = null, $options = []) |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @param Job $job |
||
| 48 | */ |
||
| 49 | 1 | public function startJob(Job $job) |
|
| 53 | |||
| 54 | |||
| 55 | /** |
||
| 56 | * On each loop check for finished jobs. |
||
| 57 | */ |
||
| 58 | 1 | public function onExpansionPostLoop() |
|
| 62 | } |
||
| 63 |
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.