Files
Coltura/src/Module/Core/CoreModule.php

13 lines
209 B
PHP

<?php
declare(strict_types=1);
namespace App\Module\Core;
final class CoreModule
{
public const string ID = 'core';
public const string LABEL = 'Core';
public const bool REQUIRED = true;
}