Files
tbbank-new/app/Modules/Makeable.php
2025-10-22 20:08:22 +05:00

18 lines
261 B
PHP

<?php
namespace App\Modules;
trait Makeable
{
/**
* Create a new element.
*
* @param mixed ...$arguments
* @return static
*/
public static function make(...$arguments)
{
return new static(...$arguments);
}
}