protected static function getInstance() { if (!self::$instance) { self::$instance = (new self())->targetClassInstance(); } return self::$instance; }
ini_set('display_startup_errors', 1); error_reporting(E_ALL); if (PHP_SAPI == 'cli-server') { // To help the built-in PHP dev server, check if the request was actually for // something which should probably be served as a static file $file = __DIR__ . $_SERVER['REQUEST_URI']; if (is_file($file)) { return false; } } require __DIR__ . '/../vendor/autoload.php'; session_start(); // Instantiate the app $settings = __DIR__ . '/../config/settings.php'; if (!is_file($settings)) { $defaults = (require __DIR__ . '/../config/settings.php.dist'); $defaults['settings']['jwt']['key'] = base64_encode(Random::secure_random_bytes(64)); file_put_contents($settings, '<?php' . "\n" . 'return ' . var_export($defaults, true) . ';'); } $app = new \Slim\App(require $settings); SlimStatic::boot($app); // Allow static proxies to be called from anywhere in App Statical::addNamespace('*', __NAMESPACE__ . '\\*'); // Set up dependencies require __DIR__ . '/../src/dependencies.php'; // Register middleware require __DIR__ . '/../src/middleware.php'; // Register routes require __DIR__ . '/../src/routes.php'; // Run app App::run();
ini_set('display_startup_errors', 1); error_reporting(E_ALL); if (PHP_SAPI == 'cli-server') { // To help the built-in PHP dev server, check if the request was actually for // something which should probably be served as a static file $file = __DIR__ . $_SERVER['REQUEST_URI']; if (is_file($file)) { return false; } } require __DIR__ . '/../vendor/autoload.php'; session_start(); // Instantiate the app $settings = __DIR__ . '/../config/settings.php'; if (!is_file($settings)) { $defaults = (require __DIR__ . '/../config/settings.php.dist'); $defaults['settings']['jwt']['key'] = base64_encode(Random::secure_random_bytes(64)); file_put_contents($settings, '<?php' . "\n" . 'return ' . var_export($defaults, true) . ';'); } $app = new Slim\App(require $settings); SlimStatic::boot($app); // Allow static proxies to be called from anywhere in App Statical::addNamespace('*', 'App\\*', 'App\\Controllers\\*', 'App\\Models\\*', 'App\\Middleware\\*', 'App\\Plugins\\*'); // Set up dependencies require __DIR__ . '/../src/dependencies.php'; // Register middleware require __DIR__ . '/../src/middleware.php'; // Register routes require __DIR__ . '/../src/routes.php'; // Run app App::run();