'required|email', ]; /** * Create a new subscribe subscriber command instance. * * @param string $email * @param bool $verified * * @return void */ public function __construct($email, $verified = false) { $this->email = $email; $this->verified = $verified; } }