Total Complexity | 6 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | final class Arguments |
||
13 | { |
||
14 | private static $defaults; |
||
15 | private $arguments; |
||
16 | |||
17 | 55 | public function __construct(string ...$arguments) |
|
26 | 55 | } |
|
27 | |||
28 | /** |
||
29 | * @param mixed $value |
||
30 | */ |
||
31 | 19 | public function load($value): Argument |
|
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return StreamInterface<string> |
||
48 | */ |
||
49 | 55 | public static function defaults(): StreamInterface |
|
61 |