1 | <?php |
||
7 | class Information extends Frames\Admin\Area\Authorized { |
||
8 | |||
9 | protected $title = 'TITLE_SYSTEM_INFORMATION'; |
||
10 | |||
11 | # Process debug mode block |
||
12 | |||
13 | private function processDebugMode(Template\Block $debug_mode) { |
||
28 | |||
29 | # Get contents |
||
30 | |||
31 | private function getContents() { |
||
63 | |||
64 | # Handle request |
||
65 | |||
66 | protected function handle() { |
||
70 | } |
||
71 | } |
||
72 |
Since your code implements the magic setter
_set
, this function will be called for any write access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write 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.