Completed
Push — 1.x ( 0f5ece...c9692e )
by Asao
36:16
created
src/Components/BreadCrumb.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     public function getReversed()
55 55
     {
56 56
         $reverse = [];
57
-        for($idx = count($this->breads) - 1; $idx >= 0; $idx--) {
57
+        for ($idx = count($this->breads) - 1; $idx >= 0; $idx--) {
58 58
             $reverse[] = $this->breads[$idx];
59 59
         }
60 60
         return $reverse;
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     {
78 78
         $bread = $this->getReversed();
79 79
 
80
-        foreach($bread as $row) {
80
+        foreach ($bread as $row) {
81 81
             if (isset($row[self::LAST]) && $row[self::LAST]) {
82 82
                 $this->isLast = true;
83 83
             }
Please login to merge, or discard this patch.