Location\Bounds::getSouth PHP Method

getSouth() public method

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

Usage Example

コード例 #1
0
ファイル: BoundsTest.php プロジェクト: mjaschen/phpgeo
 /**
  * @covers Location\Bounds::getSouth
  */
 public function testGetSouth()
 {
     $this->assertEquals(30, $this->object->getSouth());
 }