1 | <?php |
||
17 | class CodeceptionGoal extends \hidev\controllers\CommonController |
||
18 | { |
||
19 | public $isBuilt = false; |
||
20 | public $isBootstrapped = false; |
||
21 | |||
22 | public function actionMake() |
||
26 | |||
27 | public function actionLoad() |
||
31 | |||
32 | public function actionConfig() |
||
36 | |||
37 | public function actionRun() |
||
41 | |||
42 | public function build() |
||
46 | |||
47 | public function actionBuild() |
||
54 | |||
55 | public function bootstrap() |
||
59 | |||
60 | public function actionBootstrap($force = false) |
||
67 | } |
||
68 |
Since your code implements the magic getter
_get
, this function will be called for any read access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.