lychee/php/Modules/Module.php

15 lines
236 B
PHP
Raw Normal View History

2014-04-04 19:27:10 +00:00
<?php
namespace Lychee\Modules;
2014-04-04 19:27:10 +00:00
abstract class Module {
2014-04-04 19:27:10 +00:00
final public static function dependencies($available = false) {
if ($available===false) exit('Error: Can not execute function. Missing parameters or variables.');
}
2014-04-28 08:17:26 +00:00
}
?>