Completed
Pull Request — master (#48)
by Vladimir
03:04
created
src/allejo/stakx/Manager/CollectionManager.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,9 @@
 block discarded – undo
69 69
          */
70 70
         foreach ($this->trackedItemsFlattened as &$item)
71 71
         {
72
-            if (!Service::getParameter(BuildableCommand::USE_DRAFTS) && $item['draft']) { continue; }
72
+            if (!Service::getParameter(BuildableCommand::USE_DRAFTS) && $item['draft'])
73
+            {
74
+continue; }
73 75
 
74 76
             $jailItems[$item->getNamespace()][$item->getName()] = $item->createJail();
75 77
         }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/ReadableDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function __construct($filePath)
19 19
     {
20 20
         $this->fs = new Filesystem();
21
-        $p = $this->filePath = $this->fs->absolutePath((string)$filePath);
21
+        $p = $this->filePath = $this->fs->absolutePath((string) $filePath);
22 22
 
23 23
         if (!$this->fs->exists($p))
24 24
         {
Please login to merge, or discard this patch.