We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce94b91 + f144216 commit d5d6116Copy full SHA for d5d6116
src/Filesystem.php
@@ -66,7 +66,7 @@ public function read(string $filename): string
66
public function put(string $filename, string $contents)
67
{
68
if (! file_exists($this->basePath)) {
69
- mkdir($this->basePath);
+ mkdir($this->basePath, 0777, true);
70
}
71
72
file_put_contents($this->path($filename), $contents);
0 commit comments