ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NoEngine.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26class NoEngine implements Engine
27{
28 public function __construct()
29 {
30 }
31
32 public function supports(string $suffix): bool
33 {
34 return true;
35 }
36
37 public function isRunning(): bool
38 {
39 return true;
40 }
41
42 public function getSizeLimitInBytes(): int
43 {
44 return 0;
45 }
46
47}