Location\Bounds::getWest PHP 메소드

getWest() 공개 메소드

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

Usage Example

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