| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | 18 | public static function defaults(): StreamInterface |
|
| 48 | { |
||
| 49 | 18 | return self::$defaults ?? self::$defaults = Stream::of( |
|
| 50 | 1 | 'string', |
|
| 51 | 1 | Constructor\Factory::class, |
|
| 52 | 1 | Constructor\ServiceFactory::class, |
|
| 53 | 1 | Constructor\Set::class, |
|
| 54 | 1 | Constructor\Stream::class, |
|
| 55 | 1 | Constructor\Map::class, |
|
| 56 | 1 | Constructor\Merge::class, |
|
| 57 | 18 | Constructor\Construct::class |
|
| 58 | ); |
||
| 61 |