@@ -14,6 +14,7 @@ |
||
14 | 14 | * Returns a hash of the given filename. |
15 | 15 | * |
16 | 16 | * Ignores file line endings |
17 | + * @param string $filename |
|
17 | 18 | */ |
18 | 19 | public function hash($filename) |
19 | 20 | { |
@@ -46,7 +46,7 @@ |
||
46 | 46 | */ |
47 | 47 | public function getCache($filename) |
48 | 48 | { |
49 | - $cache = false;//cache_get($this->getCacheKey($filename), HACKED_CACHE_TABLE); |
|
49 | + $cache = false; //cache_get($this->getCacheKey($filename), HACKED_CACHE_TABLE); |
|
50 | 50 | |
51 | 51 | if (!empty($cache->data)) { |
52 | 52 | return $cache->data; |
@@ -70,7 +70,7 @@ |
||
70 | 70 | * |
71 | 71 | * If the file has already been downloaded, returns the the local path. |
72 | 72 | * |
73 | - * @param $url |
|
73 | + * @param string $url |
|
74 | 74 | * The URL of the file on the server. |
75 | 75 | * |
76 | 76 | * @return string |