Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
49 | 55 | public static function defaults(): StreamInterface |
|
50 | { |
||
51 | 55 | return self::$defaults ?? self::$defaults = Stream::of( |
|
52 | 1 | 'string', |
|
53 | 1 | Argument\Decorate::class, |
|
54 | 1 | Argument\Reference::class, |
|
55 | 1 | Argument\Unwind::class, |
|
56 | 1 | Argument\Pair::class, |
|
57 | 55 | Argument\Primitive::class |
|
58 | ); |
||
61 |