1 | <?php |
||
11 | class CommandLineParameterValidator implements ValidatorInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var InputInterface |
||
15 | */ |
||
16 | private $input; |
||
17 | |||
18 | /** |
||
19 | * @param $instance |
||
20 | * @return $this |
||
21 | */ |
||
22 | public function setTarget($instance) |
||
34 | |||
35 | /** |
||
36 | * @throw ValidationException |
||
37 | */ |
||
38 | public function validate() |
||
46 | } |
||
47 |