| 1 | <?php namespace nyx\console\input\formats; |
||
| 11 | class Str extends Argv |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Constructs a String Input instance. |
||
| 15 | * |
||
| 16 | * @param string $input A string containing the arguments and options in an argv format. |
||
| 17 | * @param interfaces\Tokenizer $tokenizer A Tokenizer able to handle the $input string. |
||
| 18 | * @param interfaces\Parser $parser A Parser able to handle the tokens created by $tokenizer. |
||
| 19 | */ |
||
| 20 | public function __construct(string $input, interfaces\Tokenizer $tokenizer = null, interfaces\Parser $parser = null) |
||
| 34 | } |
||
| 35 |