name = $name; $this->message = $message; $this->ip = $ip; $this->userAgent = $userAgent; $this->email = $email; $this->phone = $phone; } public function handle(TelegramNotificationService $telegram): void { $telegram->notifyContactMessage( $this->name, $this->message, $this->ip, $this->userAgent, $this->email, $this->phone ); } }