• File: ScriptAsset.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/Support/Facades/Scripts/ScriptAsset.php
  • Date Modified: 08/12/2023 1:18 AM
  • File size: 425 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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;
    }
}