Skip to content
Snippets Groups Projects
Commit 885cdc63 authored by mondrake's avatar mondrake
Browse files

Add call to parent::__construct in TextimageDownloadController for FC

parent 58a36313
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,9 @@ class TextimageDownloadController extends FileDownloadController implements Cont
* The file system service.
*/
public function __construct(TextimageFactory $textimage_factory, ImageFactory $image_factory, ConfigFactoryInterface $config_factory, LoggerInterface $logger, FileSystemInterface $file_system = NULL) {
// @todo in next major, add the 'stream_wrapper_manager' service to the
// constructor to ensure D8.8+ compatibility.
parent::__construct();
$this->textimageFactory = $textimage_factory;
$this->imageFactory = $image_factory;
$this->configFactory = $config_factory;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment