1 | <?php |
||
15 | class PriceModelFactory |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $map = [ |
||
21 | 'Price' => Price::class, |
||
22 | 'ModelGroupPrice' => ModelGroupPrice::class, |
||
23 | 'SinglePrice' => Price::class, |
||
24 | ]; |
||
25 | |||
26 | /** |
||
27 | * @param string $name |
||
28 | * @return Price |
||
29 | * @throws InvalidConfigException |
||
30 | */ |
||
31 | public function build($name) |
||
39 | |||
40 | /** |
||
41 | * @return array |
||
42 | */ |
||
43 | public function getMap(): array |
||
47 | } |
||
48 |