Completed
Push — master ( 4a4860...19bc37 )
by Vladimir
01:56
created
src/allejo/stakx/Command/BuildableCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * @param InputInterface $input
90 90
      * @param string         $param
91 91
      */
92
-    private function setServiceParameter(InputInterface &$input, $param)
92
+    private function setServiceParameter(InputInterface & $input, $param)
93 93
     {
94 94
         Service::setParameter($param, $input->getOption($param));
95 95
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/SelectFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     private static function flatten(array $array)
55 55
     {
56 56
         $return = array();
57
-        array_walk_recursive($array, function($a) use (&$return) { $return[] = $a; });
57
+        array_walk_recursive($array, function ($a) use (&$return) { $return[] = $a; });
58 58
         return $return;
59 59
     }
60 60
 }
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
src/allejo/stakx/Website.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
             ->setIterator($fileExplorer->getExplorer())
240 240
             ->addListener(Create::NAME, function ($e) { $this->watchListenerFunction($e); })
241 241
             ->addListener(Modify::NAME, function ($e) { $this->watchListenerFunction($e); })
242
-            ->addListener(Move::NAME,   function ($e) { $this->watchListenerFunction($e); })
242
+            ->addListener(Move::NAME, function ($e) { $this->watchListenerFunction($e); })
243 243
         ;
244 244
 
245 245
         $this->output->writeln('Watch started successfully');
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/BaseUrlFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,6 +95,6 @@
 block discarded – undo
95 95
             }
96 96
         }
97 97
 
98
-        return preg_replace('#(?<!:)/+#','/', join('/', $paths));
98
+        return preg_replace('#(?<!:)/+#', '/', join('/', $paths));
99 99
     }
100 100
 }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/RepeatableItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,5 +46,5 @@
 block discarded – undo
46 46
      *
47 47
      * @return void
48 48
      */
49
-    public function setParentPageView(PageView &$pageView);
49
+    public function setParentPageView(PageView & $pageView);
50 50
 }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/DataItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     /**
103 103
      * {@inheritdoc}
104 104
      */
105
-    public function setParentPageView(PageView &$pageView)
105
+    public function setParentPageView(PageView & $pageView)
106 106
     {
107 107
         $this->pageView = &$pageView;
108 108
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/DynamicPageView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param RepeatableItem $repeatableItem
42 42
      */
43
-    public function addRepeatableItem(RepeatableItem &$repeatableItem)
43
+    public function addRepeatableItem(RepeatableItem & $repeatableItem)
44 44
     {
45 45
         $this->repeatableItems[$repeatableItem->getObjectName()] = &$repeatableItem;
46 46
         $repeatableItem->setParentPageView($this);
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param RepeatableItem $repeatableItem
53 53
      */
54
-    public function delRepeatableItem(RepeatableItem &$repeatableItem)
54
+    public function delRepeatableItem(RepeatableItem & $repeatableItem)
55 55
     {
56 56
         unset($this->repeatableItems[$repeatableItem->getObjectName()]);
57 57
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/ContentItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
      *
125 125
      * @param PageView $pageView
126 126
      */
127
-    public function setParentPageView(PageView &$pageView)
127
+    public function setParentPageView(PageView & $pageView)
128 128
     {
129 129
         $this->parentPageView = &$pageView;
130 130
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/TrackingManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -148,12 +148,12 @@  discard block
 block discarded – undo
148 148
     // Internal object handling
149 149
     ///
150 150
 
151
-    protected function addFileToTracker(SplFileInfo &$file)
151
+    protected function addFileToTracker(SplFileInfo & $file)
152 152
     {
153 153
         $this->trackedItemsFlattened[$file->getRelativePathname()] = &$file;
154 154
     }
155 155
 
156
-    protected function delFileFromTracker(SplFileInfo &$file)
156
+    protected function delFileFromTracker(SplFileInfo & $file)
157 157
     {
158 158
         unset($this->trackedItemsFlattened[$file->getRelativePathname()]);
159 159
     }
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * @param TrackableDocument $trackedItem
165 165
      * @param string|null       $namespace
166 166
      */
167
-    protected function addObjectToTracker(TrackableDocument &$trackedItem, $namespace = null)
167
+    protected function addObjectToTracker(TrackableDocument & $trackedItem, $namespace = null)
168 168
     {
169 169
         if ($namespace == null)
170 170
         {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      * @param TrackableDocument $trackedItem
185 185
      * @param string|null       $namespace
186 186
      */
187
-    protected function delObjectFromTracker(TrackableDocument &$trackedItem, $namespace = null)
187
+    protected function delObjectFromTracker(TrackableDocument & $trackedItem, $namespace = null)
188 188
     {
189 189
         if ($namespace == null)
190 190
         {
Please login to merge, or discard this patch.