1 | <?php |
||
22 | class D extends C |
||
23 | { |
||
24 | public function __construct() |
||
31 | |||
32 | public static function getCustomGetterPrefix() |
||
36 | |||
37 | public static function getCustomSetterPrefix() |
||
41 | |||
42 | |||
43 | private $attribute8 = -8; |
||
44 | |||
45 | public function get_attribute8() |
||
49 | |||
50 | private $attribute9 = -9; |
||
51 | public $property9; |
||
52 | |||
53 | protected function get_property9() |
||
57 | |||
58 | protected function set_property9($value) |
||
62 | } |
||
63 |
This check looks for method names that are not written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection seeker becomes
databaseConnectionSeeker
.