Files
nexusphp/app/Support/StaticMake.php
2025-05-05 18:24:17 +07:00

15 lines
169 B
PHP

<?php
namespace App\Support;
/**
* Trait StaticMake
*/
trait StaticMake
{
public static function make(): static
{
return app(static::class);
}
}