Location\Bounds::getSouth PHP Method

getSouth() public method

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

Usage Example

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