Ejemplo n.º 1
0
 public function testGetVersion()
 {
     $ip4 = new IPAddress('127.0.0.1');
     $this->assertSame(IPAddressVersion::IPV4(), $ip4->getVersion());
     $ip6 = new IPAddress('::1');
     $this->assertSame(IPAddressVersion::IPV6(), $ip6->getVersion());
 }
Ejemplo n.º 2
0
 /**
  * @return IPAddress
  */
 public function getIpAddress()
 {
     return $this->ipAddress->toNative();
 }