OwlCyberSecurity - MANAGER
Edit File: ScriptAsset.php
<?php namespace Give\Framework\Support\Facades\Scripts; use Give\Framework\Support\Facades\Facade; /** * @since 2.32.0 * * @method static get(string $path): array * @method static getVersion(string $path): int|string * @method static getDependencies(string $path): array */ class ScriptAsset extends Facade { protected function getFacadeAccessor(): string { return ScriptAssetFacade::class; } }