Home
last modified time | relevance | path

Searched refs:toAddress (Results 1 – 2 of 2) sorted by relevance

/plugin/ipban/ip-lib/src/Range/
H A DPattern.php31 protected $toAddress; variable in IPLib\\Range\\Pattern
54 …public function __construct(AddressInterface $fromAddress, AddressInterface $toAddress, $asterisks… argument
57 $this->toAddress = $toAddress;
88 $toAddress = IPv4::fromBytes(array_merge($fixedBytes, $otherBytes));
89 $result = new static($fromAddress, $toAddress, $asterisksCount);
99 $toAddress = IPv6::fromWords(array_merge($fixedWords, $otherWords));
100 $result = new static($fromAddress, $toAddress, $asterisksCount);
134 $bytes = $this->toAddress->getBytes();
179 …ype = Factory::rangeFromBoundaries($this->fromAddress->toIPv4(), $this->toAddress->toIPv4())->getR…
269 return $this->toAddress;
[all …]
H A DSubnet.php31 protected $toAddress; variable in IPLib\\Range\\Subnet
63 …public function __construct(AddressInterface $fromAddress, AddressInterface $toAddress, $networkPr… argument
66 $this->toAddress = $toAddress;
157 …ype = Factory::rangeFromBoundaries($this->fromAddress->toIPv4(), $this->toAddress->toIPv4())->getR…
247 return $this->toAddress;
267 return $this->toAddress->getComparableString();