File "CreatesNewUsers.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/fortify/src/Contracts/CreatesNewUsers.php
File size: 269 bytes
MIME-type: text/x-php
Charset: utf-8
<?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);
}