Skip to content

Commit d566329

Browse files
enumagdg
authored andcommitted
FileStorage: fix BC break in 2.5.7 (#55)
1 parent fc01eef commit d566329

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Caching/Storages/FileStorage.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,10 @@ protected function readMetaAndLock($file, $lock)
324324

325325
/**
326326
* Reads cache data from disk and closes cache file handle.
327+
* @param array $meta
327328
* @return mixed
328329
*/
329-
protected function readData(array $meta)
330+
protected function readData($meta)
330331
{
331332
$data = stream_get_contents($meta[self::HANDLE]);
332333
flock($meta[self::HANDLE], LOCK_UN);

0 commit comments

Comments
 (0)