1 | <?php |
||
12 | class Group implements InputInterface { |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $arr = []; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $glue = ''; |
||
23 | |||
24 | /** |
||
25 | * Options constructor. |
||
26 | * |
||
27 | * @param string $glue |
||
28 | */ |
||
29 | public function __construct( string $glue = ' ' ) { |
||
32 | |||
33 | /** |
||
34 | * @param InputInterface $input |
||
35 | * |
||
36 | * @return self |
||
37 | */ |
||
38 | public function add( InputInterface $input ): self { |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function render(): string { |
||
54 | |||
55 | } |