Completed
Push — master ( d78c1b...c1cecd )
by Vladimir
02:07
created
src/Object/JailObject.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         throw new \BadMethodCallException();
82 82
     }
83 83
 
84
-    public function __get($name)
84
+    public function __get ($name)
85 85
     {
86 86
         if ($this->object->isMagicGet($name))
87 87
         {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,6 +88,6 @@
 block discarded – undo
88 88
             return $this->object->$name;
89 89
         }
90 90
 
91
-        return NULL;
91
+        return null;
92 92
     }
93 93
 }
94 94
\ No newline at end of file
Please login to merge, or discard this patch.
src/Object/ContentItem.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,13 +84,13 @@  discard block
 block discarded – undo
84 84
             $this->bodyContentEvaluated = true;
85 85
         }
86 86
 
87
-        return (string)$this->bodyContent;
87
+        return (string) $this->bodyContent;
88 88
     }
89 89
 
90 90
     /**
91 91
      * @return PageView
92 92
      */
93
-    public function &getPageView ()
93
+    public function &getPageView()
94 94
     {
95 95
         return $this->parentPageView;
96 96
     }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * {@inheritdoc}
115 115
      */
116
-    public function jsonSerialize()
116
+    public function jsonSerialize ()
117 117
     {
118 118
         return array_merge($this->getFrontMatter(), array(
119 119
             'content' => $this->getContent()
Please login to merge, or discard this patch.