%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/nunomaduro/larastan/ |
Upload File : |
<?php
declare(strict_types=1);
use Illuminate\Contracts\Console\Kernel;
use Illuminate\Contracts\Foundation\Application;
use Laravel\Lumen\Application as LumenApplication;
use NunoMaduro\Larastan\ApplicationResolver;
use Orchestra\Testbench\Concerns\CreatesApplication;
if (! defined('LARAVEL_START')) {
define('LARAVEL_START', microtime(true));
}
if (file_exists($applicationPath = getcwd().'/bootstrap/app.php')) { // Applications and Local Dev
$app = require $applicationPath;
} elseif (file_exists($applicationPath = dirname(__DIR__, 3).'/bootstrap/app.php')) { // Relative path from default vendor dir
$app = require $applicationPath;
} elseif (trait_exists(CreatesApplication::class)) { // Packages
$app = ApplicationResolver::resolve();
} else {
throw new Exception('Could not find Laravel bootstrap file nor Testbench is installed. Install orchestra/testbench if analyzing a package.');
}
if ($app instanceof Application) {
$app->make(Kernel::class)->bootstrap();
} elseif ($app instanceof LumenApplication) {
$app->boot();
}
if (! defined('LARAVEL_VERSION')) {
define('LARAVEL_VERSION', $app->version());
}