File "LaravelDetector.php"
Full Path: /var/www/html/back/vendor/spatie/php-structure-discoverer/src/Support/LaravelDetector.php
File size: 317 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\StructureDiscoverer\Support;
use Illuminate\Foundation\Application;
class LaravelDetector
{
protected static ?bool $isRunningLaravel = null;
public static function isRunningLaravel(): bool
{
return static::$isRunningLaravel ??= class_exists(Application::class);
}
}