1 | <?php |
||
16 | class TableRenderer |
||
17 | { |
||
18 | /** |
||
19 | * @var OutputInterface |
||
20 | */ |
||
21 | private $output; |
||
22 | |||
23 | /** |
||
24 | * @var Integration |
||
25 | */ |
||
26 | private $integrationModel; |
||
27 | |||
28 | /** |
||
29 | * @var Consumer |
||
30 | */ |
||
31 | private $consumerModel; |
||
32 | |||
33 | /** |
||
34 | * @var Token |
||
35 | */ |
||
36 | private $tokenModel; |
||
37 | |||
38 | /** |
||
39 | * TableRenderer constructor. |
||
40 | * @param OutputInterface $output |
||
41 | * @param Integration $integrationModel |
||
42 | * @param Consumer $consumerModel |
||
43 | * @param Token $tokenModel |
||
44 | */ |
||
45 | public function __construct( |
||
56 | |||
57 | public function render() |
||
75 | } |
||
76 |