1 | <?php |
||
19 | class ExcelDownload extends RenderableComponent |
||
20 | { |
||
21 | private $baseName; |
||
22 | private $date; |
||
23 | |||
24 | const NAME = 'excel_download'; |
||
25 | const INPUT_PARAM = 'dld'; |
||
26 | |||
27 | protected $template = '*.components.excel_download'; |
||
28 | protected $name = ExcelDownload::NAME; |
||
29 | protected $render_section = RenderableRegistry::SECTION_END; |
||
30 | protected $extension = 'dld'; |
||
31 | |||
32 | /** |
||
33 | * @return mixed |
||
34 | */ |
||
35 | public function getBaseName() |
||
39 | |||
40 | /** |
||
41 | * @param mixed $baseName |
||
42 | */ |
||
43 | public function setBaseName($baseName) |
||
48 | |||
49 | /** |
||
50 | * @return mixed |
||
51 | */ |
||
52 | public function getDate() |
||
56 | |||
57 | /** |
||
58 | * @param mixed $date |
||
59 | */ |
||
60 | public function setDate($date) |
||
65 | |||
66 | |||
67 | public function initialize(Grid $grid) |
||
89 | } |
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.