Skip to content

Commit 17284bd

Browse files
authored
create recursive directory structures
1 parent 72807a5 commit 17284bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cache/FileCacheStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ private function makeDir(string $directory): void
2626
return;
2727
}
2828

29-
$result = @mkdir($directory, 0777);
29+
$result = @mkdir($directory, 0777, true);
3030
if ($result === false) {
3131
clearstatcache();
3232
if (is_dir($directory)) {

0 commit comments

Comments
 (0)