PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Traits
/
Editing: Makeable.php
<?php declare(strict_types=1); namespace Saloon\Traits; trait Makeable { /** * Instantiate a new class with the arguments. */ public static function make(mixed ...$arguments): static { return new static(...$arguments); } }
SAVE
CANCEL