change session directory permission

This commit is contained in:
Dennis Eichhorn 2019-12-22 08:25:30 +01:00
parent bdeca100d5
commit 6e5f5bb4d3

View File

@ -72,7 +72,7 @@ final class ConsoleSessionHandler implements \SessionHandlerInterface, \SessionI
{ {
$this->savePath = $savePath; $this->savePath = $savePath;
if (!\is_dir($this->savePath)) { if (!\is_dir($this->savePath)) {
\mkdir($this->savePath, 0777); \mkdir($this->savePath, 0755);
} }
return true; return true;