# give/4.16.9/src/Framework/Support/Facades/Scripts/ScriptAsset.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 21 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/Support/Facades/Scripts/ScriptAsset.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/Support/Facades/Scripts/ScriptAsset.php
- Modified: 2023-08-11T21:18:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/Support/Facades/Scripts/ScriptAsset.php#L10-L20`.

```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;
    }
}

```
