Skip to content

Commit

Permalink
fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyiegorov committed Mar 19, 2016
1 parent 6debf5c commit 10f334d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public static function mkdir($path, $group = 'www-data', $mode = 0775)
// Create folder with correct mode
if (mkdir($path, $mode, true)) {
// Change folder group
chgrp($path, $group);
@chgrp($path, $group);

return true;
} else {
Expand Down

0 comments on commit 10f334d

Please sign in to comment.