$visit */ public function __construct( protected array $visit, protected ?string $ip, protected ?string $userAgent, protected ?string $acceptLanguage ) {} public function handle(TelegramNotificationService $telegram): void { $telegram->notifyPageVisit($this->visit, $this->ip, $this->userAgent, $this->acceptLanguage); } }