Lines Matching refs:address
21 protected $address; variable in IPLib\\Range\\Single
28 protected function __construct(AddressInterface $address) argument
30 $this->address = $address;
43 $address = Factory::addressFromString($range);
44 if ($address !== null) {
45 $result = new static($address);
58 public static function fromAddress(AddressInterface $address) argument
60 return new static($address);
70 return $this->address->toString($long);
80 return $this->address->__toString();
90 return $this->address->getAddressType();
100 return $this->address->getRangeType();
108 public function contains(AddressInterface $address) argument
111 if ($address->getAddressType() === $this->getAddressType()) {
112 if ($address->toString(false) === $this->address->toString(false)) {
144 return $this->address;
154 return $this->address;
164 return $this->address->getComparableString();
174 return $this->address->getComparableString();