Location\Bounds::getSouth PHP 메소드

getSouth() 공개 메소드

public getSouth ( ) : float
리턴 float
    public function getSouth()
    {
        return $this->southEast->getLat();
    }

Usage Example

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