1 | <?php |
||
12 | class Cache extends CacheManager |
||
13 | { |
||
14 | protected $metadata; |
||
15 | |||
16 | public function __construct() |
||
21 | |||
22 | /** |
||
23 | * @param $table |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function describeTable($table) |
||
32 | |||
33 | /** |
||
34 | * @param $table |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getCacheId($table) |
||
41 | |||
42 | /** |
||
43 | * @return Connection |
||
44 | */ |
||
45 | public function getConnection() |
||
49 | |||
50 | /** |
||
51 | * @return Manager |
||
52 | */ |
||
53 | public function getMetadata() |
||
57 | |||
58 | /** |
||
59 | * @param $metadata |
||
60 | * @return $this |
||
61 | */ |
||
62 | public function setMetadata($metadata) |
||
68 | |||
69 | /** |
||
70 | * @param $cacheId |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function get($cacheId) |
||
81 | |||
82 | /** |
||
83 | * @param $cacheId |
||
84 | * @return mixed |
||
85 | */ |
||
86 | public function reload($cacheId) |
||
90 | |||
91 | /** |
||
92 | * @param $cacheId |
||
93 | * @return mixed |
||
94 | */ |
||
95 | public function generate($cacheId) |
||
102 | |||
103 | /** |
||
104 | * @return string |
||
105 | */ |
||
106 | public function cachePath() |
||
110 | } |
||
111 |
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.