1 | <?php |
||
5 | class DateRange extends Date |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $view = 'daterange'; |
||
11 | |||
12 | /** |
||
13 | * Initialize column filter. |
||
14 | */ |
||
15 | public function initialize() |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getOperator() |
||
29 | |||
30 | /** |
||
31 | * @param string $date |
||
32 | * |
||
33 | * @return string |
||
34 | */ |
||
35 | public function parserValue($date) |
||
45 | } |
||
46 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.