1 | <?php |
||
6 | class LocatorForm extends Form |
||
7 | { |
||
8 | /** |
||
9 | * @var bool |
||
10 | */ |
||
11 | private static $show_radius = true; |
||
|
|||
12 | |||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | private static $radius_array = [ |
||
17 | '25' => '25', |
||
18 | '50' => '50', |
||
19 | '75' => '75', |
||
20 | '100' => '100', |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * LocatorForm constructor. |
||
25 | * @param Controller $controller |
||
26 | * @param string $name |
||
27 | */ |
||
28 | public function __construct(Controller $controller, $name) |
||
69 | |||
70 | /** |
||
71 | * @return Validator |
||
72 | */ |
||
73 | public function getValidator() |
||
83 | |||
84 | } |
This check marks private properties in classes that are never used. Those properties can be removed.