| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | 7 | public static function defaults(): StreamInterface |
|
| 48 | { |
||
| 49 | 7 | return self::$defaults ?? self::$defaults = Stream::of( |
|
| 50 | 1 | 'string', |
|
| 51 | 1 | Type\Map::class, |
|
| 52 | 1 | Type\Sequence::class, |
|
| 53 | 1 | Type\Set::class, |
|
| 54 | 1 | Type\Stream::class, |
|
| 55 | 1 | Type\Primitive::class, |
|
| 56 | 7 | Type\Instance::class |
|
| 57 | ); |
||
| 60 |