1 | <?php |
||
8 | class PriceFactory extends \hiqdev\php\billing\price\PriceFactory |
||
9 | { |
||
10 | protected $creators = [ |
||
11 | SinglePrice::class => 'createSinglePrice', |
||
12 | EnumPrice::class => 'createEnumPrice', |
||
13 | ModelGroupPrice::class => 'createModelGroupPrice', |
||
14 | ]; |
||
15 | |||
16 | public function createModelGroupPrice(ModelGroupPriceCreationDto $dto): ModelGroupPrice |
||
20 | } |
||
21 |