1 | <?php |
||
7 | class ResultFormat { |
||
8 | |||
9 | private $name; |
||
10 | private $nameMessageKey; |
||
11 | private $parameterDefinitions; |
||
12 | private $constructionFunction; |
||
13 | |||
14 | 5 | public function __construct( string $name, string $nameMessageKey, array $parameterDefinitions, callable $presenterBuilder ) { |
|
20 | |||
21 | 5 | public function getName(): string { |
|
24 | |||
25 | public function getNameMessageKey(): string { |
||
28 | |||
29 | 5 | public function getParameterDefinitions(): array { |
|
32 | |||
33 | 4 | public function buildPresenter(): ResultPresenter { |
|
36 | |||
37 | } |
||
38 |