Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class BrandViewFactory implements BrandViewFactoryInterface |
||
11 | { |
||
12 | /** @var string */ |
||
13 | protected $brandViewClass; |
||
14 | |||
15 | public function __construct(string $brandViewClass) |
||
16 | { |
||
17 | $this->brandViewClass = $brandViewClass; |
||
18 | } |
||
19 | |||
20 | public function create(BrandInterface $brand): BrandView |
||
29 | } |
||
30 | } |
||
31 |