You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
186B

  1. <?php
  2. namespace App\Features;
  3. trait InstanceAble
  4. {
  5. /**
  6. * @return static
  7. */
  8. public static function instance()
  9. {
  10. return app()->make(static::class);
  11. }
  12. }