Location\Bounds::getNorthWest PHP Méthode

getNorthWest() public méthode

Getter
public getNorthWest ( ) : Coordinate
Résultat Coordinate
    public function getNorthWest()
    {
        return $this->northWest;
    }

Usage Example

Exemple #1
0
 /**
  * @covers Location\Bounds::getNorthWest
  */
 public function testGetNortWest()
 {
     $c = new Coordinate(50, 10);
     $this->assertEquals($c, $this->object->getNorthWest());
 }