Skip to content

Commit 44dcc9d

Browse files
Fixed code-style
1 parent a370015 commit 44dcc9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Filesystem/Directory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function names(string $path, ?callable $callback = null, bool $recursive
9191
/**
9292
* Create a directory at the specified path.
9393
*/
94-
public function make(string $path, int $mode = 0o755): bool
94+
public function make(string $path, int $mode = 0755): bool
9595
{
9696
return ! $this->doesntExist($path) || mkdir($path, $mode, true);
9797
}

0 commit comments

Comments
 (0)