Completed
Push — master ( a6c8f9...b97be3 )
by Vladimir
03:52 queued 19s
created
src/allejo/stakx/Document/CollectableItemTrait.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
     /**
55 55
      * {@inheritdoc}
56 56
      */
57
-    public function setParentPageView(DynamicPageView &$pageView)
57
+    public function setParentPageView(DynamicPageView & $pageView)
58 58
     {
59 59
         $this->pageView = &$pageView;
60 60
     }
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
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Add a CollectableItem for this PageView to handle.
37 37
      */
38
-    public function addCollectableItem(CollectableItem &$collectable)
38
+    public function addCollectableItem(CollectableItem & $collectable)
39 39
     {
40 40
         $this->collectableItems[$collectable->getRelativeFilePath()] = &$collectable;
41 41
         $collectable->setParentPageView($this);
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Delete a CollectableItem from this PageView.
46 46
      */
47
-    public function delCollectableItem(CollectableItem &$collectableItem)
47
+    public function delCollectableItem(CollectableItem & $collectableItem)
48 48
     {
49 49
         unset($this->collectableItems[$collectableItem->getRelativeFilePath()]);
50 50
     }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/JailedDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * @param array $whiteListFunctions A list of function names that can be called.
31 31
      * @param array $jailedFunctions    A list of functions that will be redirected to another function.
32 32
      */
33
-    public function __construct(TemplateReadyDocument &$object, array $whiteListFunctions, array $jailedFunctions = array())
33
+    public function __construct(TemplateReadyDocument & $object, array $whiteListFunctions, array $jailedFunctions = array())
34 34
     {
35 35
         $this->object = &$object;
36 36
         $this->whiteListFunctions = $whiteListFunctions;
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/DataManager.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,8 @@
 block discarded – undo
63 63
      */
64 64
     public function getJailedDataItems()
65 65
     {
66
-        return self::getJailedTrackedItems($this->trackedItemsFlattened, function (DataItem $dataItem) {
66
+        return self::getJailedTrackedItems($this->trackedItemsFlattened, function (DataItem $dataItem)
67
+        {
67 68
             return $dataItem->getBasename();
68 69
         });
69 70
     }
Please login to merge, or discard this patch.