This commit is contained in:
Dave M. 2022-10-12 18:37:34 +00:00
commit c7c955ecad
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class PhpReader implements ReaderInterface {
$path = $this->pathList[0];
if ( ! file_exists($path) ) {
mkdir($path, '0775', true);
mkdir($path, '755', true);
}
return (bool) file_put_contents($path . DIRECTORY_SEPARATOR . "$filepath." . $this->accept[0], "<?php return " . var_export($content, true) . ";");