|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
namespace AC\Setting\ComponentFactory\Pro; |
|
6
|
|
|
7
|
class TogglePromotionFactory |
|
8
|
{ |
|
9
|
public function create(string $label, string $feature = ''): TogglePromotion |
|
10
|
{ |
|
11
|
return new TogglePromotion($label, $feature); |
|
12
|
} |
|
13
|
|
|
14
|
} |
|
15
|
|