1 | <?php |
||
9 | abstract class AbstractPackageGenerator extends AbstractCodeGenerator { |
||
10 | |||
11 | protected function getTemplateFolder() { |
||
14 | |||
15 | public function generate(KeekoPackageSchema $pkg) { |
||
22 | |||
23 | protected function generateClass(KeekoPackageSchema $pkg) { |
||
33 | |||
34 | abstract protected function ensureBasicSetup(PhpClass $class); |
||
35 | |||
36 | abstract protected function addMethods(PhpClass $class); |
||
37 | |||
38 | } |
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.