From ff6c32cf2988f0bb9cf681a4f9c5f0b72208f301 Mon Sep 17 00:00:00 2001 From: Kevin Porras Date: Wed, 12 Jul 2017 10:55:24 -0600 Subject: [PATCH] Fix coding standards. --- src/ScriptHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ScriptHandler.php b/src/ScriptHandler.php index b0db30f..1b4d6cf 100644 --- a/src/ScriptHandler.php +++ b/src/ScriptHandler.php @@ -45,8 +45,8 @@ public static function createSymlinks(Event $event, Filesystem $filesystem = nul } // Build and execute final command. - $mkdir_cmd = 'mkdir -p ' . $targetDirname; - exec($mkdir_cmd); + $mkdirCmd = 'mkdir -p ' . $targetDirname; + exec($mkdirCmd); $cmd = 'cd ' . $targetDirname . ' && ' . $command . ' ' . $sourceRelativePath . ' ' . basename($targetRelativePath); exec($cmd);