Total Complexity | 6 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class LsfInput extends Input |
||
8 | { |
||
9 | // Interface this.... |
||
10 | |||
11 | protected $type = 'input'; |
||
12 | |||
13 | /** |
||
14 | * All the Validation rules for this Input |
||
15 | * |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function validationRules() { |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * Returns the Input’s response after the form has been submitted and validated |
||
45 | * |
||
46 | * @param $input |
||
47 | * @return mixed |
||
48 | */ |
||
49 | public function response($input) { |
||
56 | } |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.