16 lines
381 B
PHP
16 lines
381 B
PHP
<?php
|
|
|
|
namespace App\User\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/** @implements CommandInterface<RegisterUserCommand> */
|
|
class RegisterLdapUserCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $name,
|
|
public string $email,
|
|
public string $username,
|
|
public string $password,
|
|
) {}
|
|
} |