Files
nexusphp/app/Support/StaticMake.php

15 lines
169 B
PHP
Raw Permalink Normal View History

2025-05-05 18:24:17 +07:00
<?php
namespace App\Support;
/**
* Trait StaticMake
*/
trait StaticMake
{
public static function make(): static
{
return app(static::class);
}
}