mirror of
https://github.com/danog/file.git
synced 2024-11-30 04:19:39 +01:00
Fix code style
This commit is contained in:
parent
8ca6eb476b
commit
08eb379c3c
@ -202,7 +202,7 @@ class BlockingDriver implements Driver
|
|||||||
public function mkdir(string $path, int $mode = 0777, bool $recursive = false): void
|
public function mkdir(string $path, int $mode = 0777, bool $recursive = false): void
|
||||||
{
|
{
|
||||||
if (!\mkdir($path, $mode, $recursive) && !\is_dir($path)) {
|
if (!\mkdir($path, $mode, $recursive) && !\is_dir($path)) {
|
||||||
throw new FilesystemException(sprintf('Directory "%s" was not created', $path));
|
throw new FilesystemException(\sprintf('Directory "%s" was not created', $path));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user