1 | <?php |
||
12 | class Filesystem |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * |
||
17 | * Overwrite file with provided content. |
||
18 | * |
||
19 | * @param $file |
||
20 | * @param $content |
||
21 | */ |
||
22 | public function overwrite($file, $content) |
||
26 | |||
27 | /** |
||
28 | * Create file with provided content if not exists. |
||
29 | * |
||
30 | * @param $file |
||
31 | * @param $content |
||
32 | * @throws FileAlreadyExists |
||
33 | */ |
||
34 | public function make($file, $content) |
||
42 | |||
43 | /** |
||
44 | * Get file contents |
||
45 | */ |
||
46 | public function get($file) { |
||
49 | |||
50 | /** |
||
51 | * Put content in file. |
||
52 | * |
||
53 | * @param $file |
||
54 | * @param $content |
||
55 | * @return int |
||
56 | */ |
||
57 | protected function put($file, $content) { |
||
60 | } |
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.