mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-04 06:30:53 +08:00
15 lines
169 B
PHP
15 lines
169 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
/**
|
|
* Trait StaticMake
|
|
*/
|
|
trait StaticMake
|
|
{
|
|
public static function make(): static
|
|
{
|
|
return app(static::class);
|
|
}
|
|
}
|