REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 1.77 KB
Close
/home/getspomw/royalsquad.us/vendor/geoip2/geoip2/src/Model/AnonymousPlus.php
Text
Base64
<?php declare(strict_types=1); namespace GeoIp2\Model; /** * This class provides the GeoIP Anonymous Plus model. */ class AnonymousPlus extends AnonymousIp { /** * @var int|null a score ranging from 1 to 99 that is our percent * confidence that the network is currently part of * an actively used VPN service */ public readonly ?int $anonymizerConfidence; /** * @var string|null The last day that the network was sighted in our * analysis of anonymized networks. This is in the ISO * 8601 date format, e.g., "2025-04-21". */ public readonly ?string $networkLastSeen; /** * @var string|null The name of the VPN provider (e.g., NordVPN, * SurfShark, etc.) associated with the network. */ public readonly ?string $providerName; /** * @ignore * * @param array<string, mixed> $raw */ public function __construct(array $raw) { parent::__construct($raw); $this->anonymizerConfidence = $raw['anonymizer_confidence'] ?? null; $this->networkLastSeen = $raw['network_last_seen'] ?? null; $this->providerName = $raw['provider_name'] ?? null; } /** * @return array<string, mixed>|null */ public function jsonSerialize(): ?array { $js = parent::jsonSerialize(); if ($this->anonymizerConfidence !== null) { $js['anonymizer_confidence'] = $this->anonymizerConfidence; } if ($this->networkLastSeen !== null) { $js['network_last_seen'] = $this->networkLastSeen; } if ($this->providerName !== null) { $js['provider_name'] = $this->providerName; } return $js; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 10
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
AnonymousIp.php
3.03 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
AnonymousPlus.php
1.77 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Asn.php
1.97 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
City.php
3.70 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConnectionType.php
1.58 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Country.php
3.63 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Domain.php
1.49 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Enterprise.php
279 B
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Insights.php
270 B
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Isp.php
3.46 KB
lrw-rw-rw-
2025-05-05 08:48:26
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).