Skip to content

Commit

Permalink
Merge pull request doctrine#1996 from josefsabl/patch-1
Browse files Browse the repository at this point in the history
Fix dir permissions for proxies
  • Loading branch information
alcaeus authored Apr 5, 2019
2 parents f61d90b + 55556ce commit 33b1182
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 33b1182

Please sign in to comment.