Location\Bounds::getSouth PHP Méthode

getSouth() public méthode

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

Usage Example

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