Location\Bounds::getWest PHP Method

getWest() public method

public getWest ( ) : float
return float
    public function getWest()
    {
        return $this->northWest->getLng();
    }

Usage Example

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