| Total Complexity | 2 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 11 | class ImageViewFactory implements ImageViewFactoryInterface | ||
| 12 | { | ||
| 13 | /** @var string */ | ||
| 14 | protected $imageViewClass; | ||
| 15 | |||
| 16 | /** @var FilterService */ | ||
| 17 | protected $filterService; | ||
| 18 | |||
| 19 | /** @var string */ | ||
| 20 | protected $filter; | ||
| 21 | |||
| 22 | public function __construct( | ||
| 30 | } | ||
| 31 | |||
| 32 | public function create(ImageInterface $image): ImageView | ||
| 43 |