@@ -54,7 +54,7 @@ discard block |
||
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 |
||
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 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | { |
36 | 36 | $html = TagToString::format($this); |
37 | 37 | if ($this->label) { |
38 | - $html = $this->labelHtml($html . ' ' . $this->label); |
|
38 | + $html = $this->labelHtml($html.' '.$this->label); |
|
39 | 39 | } |
40 | 40 | return $html; |
41 | 41 | } |