1 | <?php |
||
8 | class Pool extends Server |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @var string Cached policy file contents |
||
13 | */ |
||
14 | public $policyData; |
||
15 | |||
16 | /** |
||
17 | * Setting default config options |
||
18 | * Overriden from ConnectionPool::getConfigDefaults |
||
19 | * @return array|bool |
||
20 | */ |
||
21 | protected function getConfigDefaults() |
||
34 | |||
35 | /** |
||
36 | * Called when worker is ready |
||
37 | * @return void |
||
38 | */ |
||
39 | public function onReady() |
||
43 | |||
44 | /** |
||
45 | * Called when worker is going to update configuration |
||
46 | * @return void |
||
47 | */ |
||
48 | public function onConfigUpdated() |
||
59 | } |
||
60 |
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.