Conditions | 3 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
59 | 42 | private function order() |
|
60 | { |
||
61 | 42 | $count = $this->count(); |
|
62 | |||
63 | 42 | return $this->map(function (BreadcrumbItem $crumb, $key) use ($count) { |
|
64 | 42 | $crumb->resetPosition(); |
|
65 | |||
66 | 42 | if ($key === 0) |
|
67 | 42 | $crumb->setFirst(); |
|
68 | |||
69 | 42 | if ($key === ($count - 1)) |
|
70 | 42 | $crumb->setLast(); |
|
71 | |||
72 | 42 | return $crumb; |
|
73 | 42 | }); |
|
74 | } |
||
75 | } |
||
76 |