Files
oficial/aldarien/asset/app/Contract/Asset.php

22 lines
331 B
PHP
Raw Normal View History

2021-03-25 21:23:29 -03:00
<?php
namespace App\Contract;
use App\Definition\Contract;
use App\Service\Asset as AssetService;
class Asset
{
use Contract;
protected static function newInstance()
{
return new AssetService();
}
public static function get($identifier)
{
$instance = self::getInstance();
return $instance->get($identifier);
}
}
?>