X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/maxmind/GeoIp2/Record
home
/
cbholdings
/
pasukulu
/
lib
/
maxmind
/
GeoIp2
/
Record
/
📁
..
📄
AbstractPlaceRecord.php
(1.24 KB)
📄
AbstractRecord.php
(1.42 KB)
📄
City.php
(1.08 KB)
📄
Continent.php
(1.1 KB)
📄
Country.php
(1.56 KB)
📄
Location.php
(2.12 KB)
📄
MaxMind.php
(459 B)
📄
Postal.php
(895 B)
📄
RepresentedCountry.php
(848 B)
📄
Subdivision.php
(1.51 KB)
📄
Traits.php
(6.92 KB)
Editing: AbstractPlaceRecord.php
<?php declare(strict_types=1); namespace GeoIp2\Record; abstract class AbstractPlaceRecord extends AbstractRecord { /** * @var array<string> */ private $locales; /** * @ignore */ public function __construct(?array $record, array $locales = ['en']) { $this->locales = $locales; parent::__construct($record); } /** * @ignore * * @return mixed */ public function __get(string $attr) { if ($attr === 'name') { return $this->name(); } return parent::__get($attr); } /** * @ignore */ public function __isset(string $attr): bool { if ($attr === 'name') { return $this->firstSetNameLocale() !== null; } return parent::__isset($attr); } private function name(): ?string { $locale = $this->firstSetNameLocale(); // @phpstan-ignore-next-line return $locale === null ? null : $this->names[$locale]; } private function firstSetNameLocale(): ?string { foreach ($this->locales as $locale) { if (isset($this->names[$locale])) { return $locale; } } return null; } }
Upload File
Create Folder