for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DavidePastore\Ipinfo;
/**
* Represent an host with all the details.
*
* @author davidepastore
*/
class Host
{
* Contains all the properties of the host.
* @var array
protected $properties;
* Create an Host object with all the properties.
* @param array $properties
public function __construct($properties = array())
//Merge default values
$this->properties = array_merge(array(
Ipinfo::CITY => '',
Ipinfo::COUNTRY => '',
Ipinfo::HOSTNAME => '',
Ipinfo::IP => '',
Ipinfo::LOC => '',
Ipinfo::ORG => '',
Ipinfo::PHONE => '',
Ipinfo::POSTAL => '',
Ipinfo::REGION => '',
), $properties);
}
* Get the city value.
public function getCity()
return $this->properties[Ipinfo::CITY];
* Get the country value.
public function getCountry()
return $this->properties[Ipinfo::COUNTRY];
* Get the hostname value.
public function getHostname()
return $this->properties[Ipinfo::HOSTNAME];
* Get the ip value.
public function getIp()
return $this->properties[Ipinfo::IP];
* Get the loc value.
public function getLoc()
return $this->properties[Ipinfo::LOC];
* Get the org value.
public function getOrg()
return $this->properties[Ipinfo::ORG];
* Get the phone value.
public function getPhone()
return $this->properties[Ipinfo::PHONE];
* Get the postal value.
public function getPostal()
return $this->properties[Ipinfo::POSTAL];
* Get the region value.
public function getRegion()
return $this->properties[Ipinfo::REGION];
* Get all the properties.
* @return array An associative array with all the properties.
public function getProperties()
return $this->properties;