1 | <?php |
||
24 | class Strategy extends AbstractEntity |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $title; |
||
32 | |||
33 | /** |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $configuration; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | protected $configurationFile; |
||
43 | |||
44 | /** |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | protected $resources; |
||
49 | |||
50 | /** |
||
51 | * @var string |
||
52 | */ |
||
53 | protected $resourcesFile; |
||
54 | |||
55 | /** |
||
56 | * |
||
57 | * @var string |
||
58 | */ |
||
59 | protected $targets; |
||
60 | |||
61 | /** |
||
62 | * @var string |
||
63 | */ |
||
64 | protected $targetsFile; |
||
65 | |||
66 | /** |
||
67 | * |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getTitle() |
||
74 | |||
75 | /** |
||
76 | * @return string |
||
77 | */ |
||
78 | public function getRawConfiguration() |
||
86 | |||
87 | /** |
||
88 | * @return array |
||
89 | */ |
||
90 | public function getConfiguration() |
||
96 | |||
97 | /** |
||
98 | * @return string |
||
99 | */ |
||
100 | public function getRawResources() |
||
108 | |||
109 | /** |
||
110 | * @return array |
||
111 | */ |
||
112 | public function getResources() |
||
116 | |||
117 | /** |
||
118 | * @return string |
||
119 | */ |
||
120 | public function getRawTargets() |
||
128 | |||
129 | /** |
||
130 | * @return array |
||
131 | */ |
||
132 | public function getTargets() |
||
136 | |||
137 | /** |
||
138 | * |
||
139 | * @param string $title |
||
140 | */ |
||
141 | public function setTitle($title) |
||
145 | |||
146 | /** |
||
147 | * |
||
148 | * @param string $configuration |
||
149 | */ |
||
150 | public function setConfiguration($configuration) |
||
154 | |||
155 | /** |
||
156 | * |
||
157 | * @param string $resources |
||
158 | */ |
||
159 | public function setResources($resources) |
||
163 | |||
164 | /** |
||
165 | * |
||
166 | * @param string $targets |
||
167 | */ |
||
168 | public function setTargets($targets) |
||
172 | |||
173 | /** |
||
174 | * @param string $path |
||
175 | * @return string |
||
176 | */ |
||
177 | private function getRealFilePath($path) |
||
193 | } |
||
194 |
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.