Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
56 | 120 | public static function defaults(): StreamInterface |
|
57 | { |
||
58 | 120 | return self::$defaults ?? self::$defaults = Stream::of( |
|
59 | 1 | 'string', |
|
60 | 1 | Property\Primitive::class, |
|
61 | 1 | Property\Set::class, |
|
62 | 1 | Property\Stream::class, |
|
63 | 1 | Property\Sequence::class, |
|
64 | 1 | Property\Mixed::class, |
|
65 | 120 | Property\Enum::class |
|
66 | ); |
||
69 |