|string> */ public function rules(): array { return [ 'userId' => 'required|string', 'username' => 'required|string', ]; } public function passedValidation(): void { $this->username = $this->input('username'); $this->userId = $this->input('userId'); } }