Skip to content

Commit

Permalink
Fix dir permissions for proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
josefsabl authored Apr 5, 2019
1 parent f61d90b commit 55556ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/ODM/MongoDB/Proxy/FileLocator.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct(string $proxiesDirectory)
$absolutePath = realpath($proxiesDirectory);

if ($absolutePath === false) {
mkdir($proxiesDirectory, 0755, true);
mkdir($proxiesDirectory, 0775, true);
}

parent::__construct($proxiesDirectory);
Expand Down

0 comments on commit 55556ce

Please sign in to comment.