uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
.
/
.
/
craft4-newsite-space
/
vendor
/
commerceguys
/
addressing
/
src
/
Zone
/
Zone.php
/
/
<?php namespace CommerceGuys\Addressing\Zone; use CommerceGuys\Addressing\AddressInterface; /** * Represents a zone. */ class Zone { /** * The ID. * * @var string */ protected $id; /** * The label. * * @var string */ protected $label; /** * The territories. * * @var \CommerceGuys\Addressing\Zone\ZoneTerritory[] */ protected $territories; public function __construct(array $definition) { foreach (['id', 'label', 'territories'] as $required_property) { if (empty($definition[$required_property])) { throw new \InvalidArgumentException(sprintf('Missing required property "%s".', $required_property)); } } if (!is_array($definition['territories'])) { throw new \InvalidArgumentException(sprintf('The property "territories" must be an array.')); } $this->id = $definition['id']; $this->label = $definition['label']; foreach ($definition['territories'] as $territory_definition) { $this->territories[] = new ZoneTerritory($territory_definition); } } public function getId(): string { return $this->id; } public function getLabel(): string { return $this->label; } /** * Gets the territories. * * @return \CommerceGuys\Addressing\Zone\ZoneTerritory[] The territories. */ public function getTerritories(): array { return $this->territories; } /** * Checks whether the provided address belongs to the zone. * * @param \CommerceGuys\Addressing\AddressInterface $address The address. * * @return bool True if the provided address belongs to the zone, false otherwise. */ public function match(AddressInterface $address): bool { foreach ($this->territories as $territory) { if ($territory->match($address)) { return true; } } return false; } }
/srv/users/craft4/apps/././craft4-newsite-space/vendor/commerceguys/addressing/src/Zone/Zone.php