15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
namespace interfaces;
|
|
|
|
use Exception;
|
|
|
|
interface universal_module_i
|
|
{
|
|
/**
|
|
* Require the module to be enabled
|
|
* @return void
|
|
* @throws Exception If the module is not enabled
|
|
*/
|
|
public function requireModuleEnabled(): void;
|
|
} |