| Total Complexity | 7 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | |||
| 9 | interface Argument |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param mixed $value |
||
| 13 | * |
||
| 14 | * @throws ValueNotSupported |
||
| 15 | */ |
||
| 16 | public static function fromValue($value): self; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param StreamInterface<mixed> $built |
||
| 20 | * |
||
| 21 | * @return StreamInterface<mixed> |
||
| 22 | */ |
||
| 23 | public function resolve( |
||
| 24 | StreamInterface $built, |
||
| 25 | Definitions $definitions |
||
| 26 | ): StreamInterface; |
||
| 27 | } |
||
| 28 |