Completed
Push — master ( e4bfce...b9fe45 )
by Vladimir
02:19
created
src/Object/FrontMatterObject.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -522,7 +522,9 @@  discard block
 block discarded – undo
522 522
      */
523 523
     final public function deleteFrontMatter ($key)
524 524
     {
525
-        if (!isset($this->writableFrontMatter[$key])) { return; }
525
+        if (!isset($this->writableFrontMatter[$key]))
526
+        {
527
+return; }
526 528
 
527 529
         unset($this->writableFrontMatter[$key]);
528 530
     }
@@ -593,7 +595,9 @@  discard block
 block discarded – undo
593 595
     public function offsetExists ($offset)
594 596
     {
595 597
         if ($this->isMagicGet($offset))
596
-            return true;
598
+        {
599
+                    return true;
600
+        }
597 601
 
598 602
         $fxnCall = 'get' . ucfirst($offset);
599 603
         return method_exists($this, $fxnCall) && in_array($fxnCall, static::$whiteListFunctions);
Please login to merge, or discard this patch.