Location\Bounds::getNorth PHP Méthode

getNorth() public méthode

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

Usage Example

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