From af876a231f9f95fa62f505e6e5bc75a1f2f8e9e7 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 19 Apr 2019 13:56:32 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/NewCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NewCommand.php b/src/NewCommand.php index 4a03e278..eb9a75df 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -188,8 +188,8 @@ protected function prepareWritableDirectories($appDirectory, OutputInterface $ou $filesystem = new Filesystem; try { - $filesystem->chmod($appDirectory.DIRECTORY_SEPARATOR."bootstrap/cache", 0755, 0000, true); - $filesystem->chmod($appDirectory.DIRECTORY_SEPARATOR."storage", 0755, 0000, true); + $filesystem->chmod($appDirectory.DIRECTORY_SEPARATOR.'bootstrap/cache', 0755, 0000, true); + $filesystem->chmod($appDirectory.DIRECTORY_SEPARATOR.'storage', 0755, 0000, true); } catch (IOExceptionInterface $e) { $output->writeln('You should verify that the "storage" and "bootstrap/cache" directories are writable.'); }