This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Use these methods to create automatic properties. When a property would be accessed, | |
* PHP will look for a function prefixed with get, set, isset, or unset followed by | |
* the property name with the first name capitalized. For example, the $this->name | |
* would be accessed as getName(), setName(), issetName(), and unsetName(). | |
*/ | |
/** |
NewerOlder