Completed
Push — master ( 0ffa26...ca3451 )
by Vladimir
02:21
created
src/Twig/GroupByFilter.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,9 @@
 block discarded – undo
10 10
 
11 11
         foreach ($array as $key => $item)
12 12
         {
13
-            if (!isset($item[$sortKey])) { continue; }
13
+            if (!isset($item[$sortKey]))
14
+            {
15
+continue; }
14 16
 
15 17
             $groupBy = $item[$sortKey];
16 18
 
Please login to merge, or discard this patch.
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.