1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 11:54:54 +01:00

Fix code style

This commit is contained in:
Niklas Keller 2018-07-27 21:00:56 +02:00
parent 8ca6eb476b
commit 08eb379c3c

View File

@ -202,7 +202,7 @@ class BlockingDriver implements Driver
public function mkdir(string $path, int $mode = 0777, bool $recursive = false): void
{
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));
}
}