Location\Bounds::getSouthEast PHP Method

getSouthEast() public method

Getter
public getSouthEast ( ) : Coordinate
return Coordinate
    public function getSouthEast()
    {
        return $this->southEast;
    }

Usage Example

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