1 | <?php |
||
6 | class CFastTrackCache |
||
7 | { |
||
8 | /** |
||
9 | * Cache is disabled to start with. |
||
10 | */ |
||
11 | private $enabled = false; |
||
12 | |||
13 | |||
14 | |||
15 | /** |
||
16 | * Path to the cache directory. |
||
17 | */ |
||
18 | private $path; |
||
19 | |||
20 | |||
21 | |||
22 | /** |
||
23 | * Filename of current cache item. |
||
24 | */ |
||
25 | private $filename; |
||
26 | |||
27 | |||
28 | |||
29 | /** |
||
30 | * Container with items to store as cached item. |
||
31 | */ |
||
32 | private $container; |
||
33 | |||
34 | |||
35 | |||
36 | /** |
||
37 | * Enable or disable cache. |
||
38 | * |
||
39 | * @param boolean $enable set to true to enable, false to disable |
||
|
|||
40 | * |
||
41 | * @return $this |
||
42 | */ |
||
43 | public function enable($enabled) |
||
48 | |||
49 | |||
50 | |||
51 | /** |
||
52 | * Set the path to the cache dir which must exist. |
||
53 | * |
||
54 | * @param string $path to the cache dir. |
||
55 | * |
||
56 | * @throws Exception when $path is not a directory. |
||
57 | * |
||
58 | * @return $this |
||
59 | */ |
||
60 | public function setCacheDir($path) |
||
70 | |||
71 | |||
72 | |||
73 | /** |
||
74 | * Set the filename to store in cache, use the querystring to create that |
||
75 | * filename. |
||
76 | * |
||
77 | * @param array $clear items to clear in $_GET when creating the filename. |
||
78 | * |
||
79 | * @return string as filename created. |
||
80 | */ |
||
81 | public function setFilename($clear) |
||
101 | |||
102 | |||
103 | |||
104 | /** |
||
105 | * Add header items. |
||
106 | * |
||
107 | * @param string $header add this as header. |
||
108 | * |
||
109 | * @return $this |
||
110 | */ |
||
111 | public function addHeader($header) |
||
116 | |||
117 | |||
118 | |||
119 | /** |
||
120 | * Add header items on output, these are not output when 304. |
||
121 | * |
||
122 | * @param string $header add this as header. |
||
123 | * |
||
124 | * @return $this |
||
125 | */ |
||
126 | public function addHeaderOnOutput($header) |
||
131 | |||
132 | |||
133 | |||
134 | /** |
||
135 | * Set path to source image to. |
||
136 | * |
||
137 | * @param string $source path to source image file. |
||
138 | * |
||
139 | * @return $this |
||
140 | */ |
||
141 | public function setSource($source) |
||
146 | |||
147 | |||
148 | |||
149 | /** |
||
150 | * Set last modified of source image, use to check for 304. |
||
151 | * |
||
152 | * @param string $lastModified |
||
153 | * |
||
154 | * @return $this |
||
155 | */ |
||
156 | public function setLastModified($lastModified) |
||
161 | |||
162 | |||
163 | |||
164 | /** |
||
165 | * Get filename of cached item. |
||
166 | * |
||
167 | * @return string as filename. |
||
168 | */ |
||
169 | public function getFilename() |
||
173 | |||
174 | |||
175 | |||
176 | /** |
||
177 | * Write current item to cache. |
||
178 | * |
||
179 | * @return boolean if cache file was written. |
||
180 | */ |
||
181 | public function writeToCache() |
||
194 | |||
195 | |||
196 | |||
197 | /** |
||
198 | * Output current item from cache, if available. |
||
199 | * |
||
200 | * @return void |
||
201 | */ |
||
202 | public function output() |
||
238 | } |
||
239 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. It has, however, found a similar but not annotated parameter which might be a good fit.
Consider the following example. The parameter
$ireland
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was changed, but the annotation was not.