Location\Bounds::getEast PHP Méthode

getEast() public méthode

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

Usage Example

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