Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
40 | 24 | public static function ObtainFirstOrLast( |
|
41 | bool $before, |
||
42 | DaftNestedWriteableObject $first, |
||
43 | DaftNestedWriteableObject ...$leaves |
||
44 | ) : DaftNestedWriteableObject { |
||
45 | 24 | array_unshift($leaves, $first); |
|
46 | |||
47 | 24 | $reference = $before ? current($leaves) : end($leaves); |
|
48 | |||
49 | 24 | return $reference; |
|
50 | } |
||
52 |