From 08eb379c3c4216bc3f342f7e46bb08b610ec4be9 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Fri, 27 Jul 2018 21:00:56 +0200 Subject: [PATCH] Fix code style --- lib/BlockingDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BlockingDriver.php b/lib/BlockingDriver.php index c5ee6f0..9b733af 100644 --- a/lib/BlockingDriver.php +++ b/lib/BlockingDriver.php @@ -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)); } }