1 | <?php |
||
7 | final class ParameterStorage |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $parameter; |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | private $groupOfParameters = []; |
||
18 | |||
19 | public function __construct(string $parameter, array $groupOfParameters) |
||
24 | |||
25 | public function getParameter() : string |
||
29 | |||
30 | public function getGroupOfParameters() : array |
||
34 | } |
||
35 |