ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
DefaultEngines.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27{
28 private array $engines = [
29 NoEngine::class,
30 GDEngine::class,
31 ImagickEngine::class,
32 FFMpegEngine::class,
33 ImagickEngineWithOptionalFFMpeg::class,
34 ];
35
36 public function __construct()
37 {
38 }
39
40 public function get(): array
41 {
42 return $this->engines;
43 }
44}