Location\Bounds::getNorthWest PHP Method

getNorthWest() public method

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

Usage Example

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