1 | <?php |
||
5 | class Xhgui_Controller_Import extends Xhgui_Controller |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var Xhgui_Storage_Factory |
||
10 | */ |
||
11 | protected $storageFactory; |
||
12 | |||
13 | /** |
||
14 | * @var Xhgui_Saver |
||
15 | */ |
||
16 | protected $saver; |
||
17 | |||
18 | /** |
||
19 | * Xhgui_Controller_Import constructor. |
||
20 | * @param Slim $app |
||
21 | */ |
||
22 | public function __construct(Slim $app, Xhgui_Storage_Factory $storageFactory, Xhgui_Saver $saver) |
||
28 | |||
29 | /** |
||
30 | * Import main page. Use to select source and target. |
||
31 | */ |
||
32 | public function index() |
||
59 | |||
60 | /** |
||
61 | * Main import function. It does all the work. |
||
62 | */ |
||
63 | public function import() |
||
101 | |||
102 | /** |
||
103 | * @return Xhgui_Storage_Factory |
||
104 | */ |
||
105 | public function getStorageFactory() |
||
109 | |||
110 | /** |
||
111 | * @param Xhgui_Storage_Factory $storageFactory |
||
112 | */ |
||
113 | public function setStorageFactory($storageFactory) |
||
117 | |||
118 | /** |
||
119 | * @return Xhgui_Saver |
||
120 | */ |
||
121 | public function getSaver() |
||
125 | |||
126 | /** |
||
127 | * @param Xhgui_Saver $saver |
||
128 | */ |
||
129 | public function setSaver($saver) |
||
133 | } |
||
134 |
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.