Failed Conditions
Push — master ( 1d3aa7...f32a49 )
by Çağrı
44:42 queued 42:36
created
src/Deployer/DefaultDeployer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,9 @@
 block discarded – undo
274 274
     private function doCreateSharedFiles() : void
275 275
     {
276 276
         $this->log('<h2>Creating symlinks for shared files</>');
277
-        if (!is_array($this->getConfig(Option::sharedFiles))) return;
277
+        if (!is_array($this->getConfig(Option::sharedFiles))) {
278
+            return;
279
+        }
278 280
 
279 281
         foreach ($this->getConfig(Option::sharedFiles) as $sharedFile) {
280 282
             $sharedFileParentDir = dirname($sharedFile);
Please login to merge, or discard this patch.