Searched refs:fromAddress (Results 1 – 5 of 5) sorted by relevance
/plugin/ipban/ip-lib/src/Range/ |
D | Pattern.php | 24 protected $fromAddress; variable in IPLib\\Range\\Pattern 54 …public function __construct(AddressInterface $fromAddress, AddressInterface $toAddress, $asterisks… argument 56 $this->fromAddress = $fromAddress; 84 $fromAddress = IPv4::fromString(str_replace('*', '0', $range)); 85 if ($fromAddress !== null) { 86 $fixedBytes = array_slice($fromAddress->getBytes(), 0, -$asterisksCount); 89 $result = new static($fromAddress, $toAddress, $asterisksCount); 95 $fromAddress = IPv6::fromString(str_replace('*', '0', $range)); 96 if ($fromAddress !== null) { 97 $fixedWords = array_slice($fromAddress->getWords(), 0, -$asterisksCount); [all …]
|
D | Subnet.php | 24 protected $fromAddress; variable in IPLib\\Range\\Subnet 63 …public function __construct(AddressInterface $fromAddress, AddressInterface $toAddress, $networkPr… argument 65 $this->fromAddress = $fromAddress; 124 return $this->fromAddress->toString($long).'/'.$this->networkPrefix; 144 return $this->fromAddress->getAddressType(); 157 …$this->rangeType = Factory::rangeFromBoundaries($this->fromAddress->toIPv4(), $this->toAddress->to… 237 return $this->fromAddress; 257 return $this->fromAddress->getComparableString();
|
D | Single.php | 58 public static function fromAddress(AddressInterface $address) function in IPLib\\Range\\Single
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/ |
D | SMTPDelivery.php | 26 public $fromAddress; variable in Google\\Service\\CloudBuild\\SMTPDelivery 49 public function setFromAddress($fromAddress) argument 51 $this->fromAddress = $fromAddress; 58 return $this->fromAddress;
|
/plugin/ipban/ip-lib/src/ |
D | Factory.php | 120 $result = Range\Single::fromAddress($from); 122 $result = Range\Single::fromAddress($to); 129 $result = Range\Single::fromAddress($from);
|