1 | <?php |
||
25 | class Cli implements FormaterInterface { |
||
26 | |||
27 | /** |
||
28 | * Validator |
||
29 | * |
||
30 | * @var \Hal\Application\Rule\Validator |
||
31 | */ |
||
32 | private $validator; |
||
33 | |||
34 | /** |
||
35 | * Bounds |
||
36 | * |
||
37 | * @var BoundsInterface |
||
38 | */ |
||
39 | private $bound; |
||
40 | |||
41 | /** |
||
42 | * @var OutputInterface |
||
43 | */ |
||
44 | private $output; |
||
45 | |||
46 | /** |
||
47 | * Constructor |
||
48 | * |
||
49 | * @param Validator $validator |
||
50 | * @param BoundsInterface $bound |
||
51 | * @param OutputInterface $output |
||
52 | */ |
||
53 | public function __construct(Validator $validator, BoundsInterface $bound, OutputInterface $output) |
||
59 | |||
60 | /** |
||
61 | * @inheritdoc |
||
62 | */ |
||
63 | public function terminate(ResultCollection $collection, ResultCollection $groupedResults){ |
||
78 | |||
79 | /** |
||
80 | * @inheritdoc |
||
81 | */ |
||
82 | public function getName() { |
||
85 | } |