Completed
Push — master ( a41cf5...7efa4f )
by Vladimir
02:55
created
src/allejo/stakx/Document/ReadableDocument.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,11 +182,15 @@
 block discarded – undo
182 182
      *
183 183
      * @param mixed $mixed Any information returned from the readContents() method.
184 184
      */
185
-    protected function afterReadContents($mixed) {}
185
+    protected function afterReadContents($mixed)
186
+    {
187
+}
186 188
 
187 189
     /**
188 190
      * Functionality that needs to take place before this document is considered "compiled," meaning everything has been
189 191
      * processed, configured, and built.
190 192
      */
191
-    protected function beforeCompile() {}
193
+    protected function beforeCompile()
194
+    {
195
+}
192 196
 }
Please login to merge, or discard this patch.
src/allejo/stakx/Utilities/NullableArray.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,8 @@
 block discarded – undo
42 42
      */
43 43
     public function offsetSet($offset, $value)
44 44
     {
45
-        if ($offset === null) {
45
+        if ($offset === null)
46
+        {
46 47
             return;
47 48
         }
48 49
 
Please login to merge, or discard this patch.