| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 62.5% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Requirements |
||
| 11 | { |
||
| 12 | 1 | public static function hasEnoughMemory(): bool { |
|
| 13 | 1 | $memory = MemoryLimits::getSystemMemory(); |
|
| 14 | 1 | return ($memory > SettingsService::MINIMUM_SYSTEM_MEMORY_REQUIREMENTS); |
|
| 15 | } |
||
| 16 | |||
| 17 | 1 | public static function pdlibLoaded(): bool { |
|
| 19 | } |
||
| 20 | |||
| 21 | public static function memoriesIsInstalled(): bool { |
||
| 24 | } |
||
| 25 | |||
| 27 |