Home
last modified time | relevance | path

Searched refs:addressType (Results 1 – 19 of 19) sorted by last modified time

/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
H A DServiceStatus.php23 protected $addressType = Addressable::class; variable in Google\\Service\\CloudRun\\ServiceStatus
H A DRouteStatus.php23 protected $addressType = Addressable::class; variable in Google\\Service\\CloudRun\\RouteStatus
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessAccountManagement/
H A DOrganizationInfo.php22 protected $addressType = PostalAddress::class; variable in Google\\Service\\MyBusinessAccountManagement\\OrganizationInfo
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessVerifications/
H A DLocation.php22 protected $addressType = PostalAddress::class; variable in Google\\Service\\MyBusinessVerifications\\Location
H A DAddressVerificationData.php22 protected $addressType = PostalAddress::class; variable in Google\\Service\\MyBusinessVerifications\\AddressVerificationData
H A DServiceBusinessContext.php22 protected $addressType = PostalAddress::class; variable in Google\\Service\\MyBusinessVerifications\\ServiceBusinessContext
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DOrderPickupDetails.php23 protected $addressType = OrderAddress::class; variable in Google\\Service\\ShoppingContent\\OrderPickupDetails
H A DTestOrderDeliveryDetails.php22 protected $addressType = TestOrderAddress::class; variable in Google\\Service\\ShoppingContent\\TestOrderDeliveryDetails
H A DAccountBusinessInformation.php22 protected $addressType = AccountAddress::class; variable in Google\\Service\\ShoppingContent\\AccountBusinessInformation
H A DOrderDeliveryDetails.php22 protected $addressType = OrderAddress::class; variable in Google\\Service\\ShoppingContent\\OrderDeliveryDetails
H A DReturnAddress.php22 protected $addressType = ReturnAddressAddress::class; variable in Google\\Service\\ShoppingContent\\ReturnAddress
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CivicInfo/
H A DOfficial.php23 protected $addressType = SimpleAddressType::class; variable in Google\\Service\\CivicInfo\\Official
H A DPollingLocation.php23 protected $addressType = SimpleAddressType::class; variable in Google\\Service\\CivicInfo\\PollingLocation
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DBuilding.php23 protected $addressType = BuildingAddress::class; variable in Google\\Service\\Directory\\Building
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DAddress.php30 public $addressType; variable in Google\\Service\\Compute\\Address
109 public function setAddressType($addressType) argument
111 $this->addressType = $addressType;
118 return $this->addressType;
/plugin/ipban/ip-lib/src/
H A DFactory.php125 $addressType = $from->getAddressType();
126 if ($addressType === $to->getAddressType()) {
/plugin/ipban/ip-lib/src/Range/
H A DPattern.php177 $addressType = $this->getAddressType();
178 if ($addressType === AddressType::T_IPv6 && Subnet::get6to4()->containsRange($this)) {
181 switch ($addressType) {
H A DSubnet.php155 $addressType = $this->getAddressType();
156 if ($addressType === AddressType::T_IPv6 && static::get6to4()->containsRange($this)) {
159 switch ($addressType) {
/plugin/ipban/ip-lib/
H A DREADME.md274 Let's assume that you saved the type in a field called `addressType`, and the range boundaries in t…
276 …between the fields `rangeFrom` and `rangeTo`, and check if the stored `addressType` is the same as…
290 insert into ranges (addressType, rangeFrom, rangeTo)
291 values (:addressType, :rangeFrom, :rangeTo)
294 ':addressType' => $range->getAddressType(),
302 where addressType = :addressType
306 ':addressType' => $address->getAddressType(),