Files
theloftstore/vendor/laravel/fortify/src/Contracts/CreatesNewUsers.php
T
2025-03-28 08:52:46 +01:00

15 lines
269 B
PHP

<?php
namespace Laravel\Fortify\Contracts;
interface CreatesNewUsers
{
/**
* Validate and create a newly registered user.
*
* @param array $input
* @return \Illuminate\Foundation\Auth\User
*/
public function create(array $input);
}