Location\Bounds::getWest PHP Метод

getWest() публичный Метод

public getWest ( ) : float
Результат float
    public function getWest()
    {
        return $this->northWest->getLng();
    }

Usage Example

Пример #1
0
 /**
  * @covers Location\Bounds::getWest
  */
 public function testGetWest()
 {
     $this->assertEquals(10, $this->object->getWest());
 }