ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NoEngine.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 class 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 }