Skip to content

Commit

Permalink
Merge pull request #2 from Rendez/patch-1
Browse files Browse the repository at this point in the history
CodeTransformed: fix $mode arg in mkdir() as int
  • Loading branch information
Atanamo authored Jul 17, 2018
2 parents 75a0a67 + bae584d commit 65f3cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CodeTransformer.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private static function createMissingDirectories($dirPath, $oTracer=null) {
}

if (!is_dir($dirPath)) {
mkdir($dirPath, '0777', true);
mkdir($dirPath, 0777, true);
}

return $dirPath;
Expand Down

0 comments on commit 65f3cc1

Please sign in to comment.