Location\Bounds::getEast PHP Method

getEast() public method

public getEast ( ) : float
return float
    public function getEast()
    {
        return $this->southEast->getLng();
    }

Usage Example

Beispiel #1
0
 /**
  * @covers Location\Bounds::getEast
  */
 public function testGetEast()
 {
     $this->assertEquals(30, $this->object->getEast());
 }