| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 20 | public function create(BrandInterface $brand): BrandView  | 
            ||
| 21 |     { | 
            ||
| 22 | /** @var BrandView $brandView */  | 
            ||
| 23 | $brandView = new $this->brandViewClass();  | 
            ||
| 24 | $brandView->id = $brand->getId();  | 
            ||
| 25 | $brandView->code = $brand->getCode();  | 
            ||
| 26 | $brandView->name = $brand->getName();  | 
            ||
| 27 | |||
| 28 | return $brandView;  | 
            ||
| 29 | }  | 
            ||
| 31 |