// Require Composer Autoload File require_once(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'); // Start App (new \lb\Lb())->run();
class Lb extends \lb\BaseLb { public function run() { if (strtolower(php_sapi_name()) !== 'cli') { parent::run(); } } }
spl_autoload_register(['self', 'autoload']);