Total Complexity | 5 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class StoreIdDataRequest implements BuilderInterface |
||
21 | { |
||
22 | /** |
||
23 | * Store Id block name. |
||
24 | */ |
||
25 | public const STORE_ID = 'store_id'; |
||
26 | |||
27 | /** |
||
28 | * @var SubjectReader |
||
29 | */ |
||
30 | protected $subjectReader; |
||
31 | |||
32 | /** |
||
33 | * @var Config |
||
34 | */ |
||
35 | protected $config; |
||
36 | |||
37 | /** |
||
38 | * @param SubjectReader $subjectReader |
||
39 | * @param Config $config |
||
40 | */ |
||
41 | public function __construct( |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Build. |
||
51 | * |
||
52 | * @param array $buildSubject |
||
53 | */ |
||
54 | public function build(array $buildSubject): array |
||
70 |