Flarum\Core\Command\RegisterUser::__construct PHP Method

__construct() public method

public __construct ( User $actor, array $data )
$actor Flarum\Core\User The user performing the action.
$data array The attributes of the new user.
    public function __construct(User $actor, array $data)
    {
        $this->actor = $actor;
        $this->data = $data;
    }
RegisterUser