Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function __construct( |
||
34 | MediaUploaderInterface $uploader, |
||
35 | EngineInterface $twigEngine, |
||
36 | string $template, |
||
37 | string $pathPrefix |
||
38 | ) { |
||
39 | $this->uploader = $uploader; |
||
40 | $this->twigEngine = $twigEngine; |
||
41 | $this->template = $template; |
||
42 | $this->pathPrefix = $pathPrefix; |
||
43 | } |
||
44 | |||
55 |