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