| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\Framework\Support\Facades\Scripts; |
| 4 |
|
| 5 |
use Give\Framework\Support\Facades\Facade; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 2.32.0 |
| 9 |
* |
| 10 |
* @method static get(string $path): array |
| 11 |
* @method static getVersion(string $path): int|string |
| 12 |
* @method static getDependencies(string $path): array |
| 13 |
*/ |
| 14 |
class ScriptAsset extends Facade |
| 15 |
{ |
| 16 |
protected function getFacadeAccessor(): string |
| 17 |
{ |
| 18 |
return ScriptAssetFacade::class; |
| 19 |
} |
| 20 |
} |
| 21 |
|