1 | <?php |
||
9 | class FileProvider extends AbstractProvider |
||
10 | { |
||
11 | /** |
||
12 | * @param FormMapper $formMapper |
||
13 | */ |
||
14 | public function buildProviderCreateForm(FormMapper $formMapper) |
||
18 | |||
19 | /** |
||
20 | * @param Media $media |
||
21 | */ |
||
22 | public function update(Media $media) |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getIcon() |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getName() |
||
48 | |||
49 | public function getTypeName() |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getMediaTemplate() |
||
61 | } |
||
62 |
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.