17 lines
344 B
PHP
17 lines
344 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace DigiComp\FlowMaintenanceMode;
|
||
|
|
||
|
class MaintenanceModeDistributionFileManager implements MaintenanceModeManagerInterface
|
||
|
{
|
||
|
public function isMaintenanceMode(): bool
|
||
|
{
|
||
|
if (\file_exists(\FLOW_PATH_ROOT . '/.maintenance')) {
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|