@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | /** |
| 35 | 35 | * Create a coordinate |
| 36 | 36 | * |
| 37 | - * @param double $latitude The latitude. |
|
| 38 | - * @param double $longitude The longitude. |
|
| 37 | + * @param integer $latitude The latitude. |
|
| 38 | + * @param integer $longitude The longitude. |
|
| 39 | 39 | * @param boolean $noWrap The no wrap flag. |
| 40 | 40 | */ |
| 41 | 41 | public function __construct($latitude = 0, $longitude = 0, $noWrap = true) |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | /** |
| 77 | 77 | * Gets the longitude |
| 78 | 78 | * |
| 79 | - * @return doube The longitude. |
|
| 79 | + * @return double The longitude. |
|
| 80 | 80 | */ |
| 81 | 81 | public function getLongitude() |
| 82 | 82 | { |
@@ -31,8 +31,8 @@ |
||
| 31 | 31 | /** |
| 32 | 32 | * Creates a point. |
| 33 | 33 | * |
| 34 | - * @param double $x X coordinate. |
|
| 35 | - * @param double $y Y coordinate. |
|
| 34 | + * @param integer $x X coordinate. |
|
| 35 | + * @param integer $y Y coordinate. |
|
| 36 | 36 | */ |
| 37 | 37 | public function __construct($x = 0, $y = 0) |
| 38 | 38 | { |
@@ -37,8 +37,8 @@ |
||
| 37 | 37 | /** |
| 38 | 38 | * Create a size. |
| 39 | 39 | * |
| 40 | - * @param double $width The width. |
|
| 41 | - * @param double $height The height. |
|
| 40 | + * @param integer $width The width. |
|
| 41 | + * @param integer $height The height. |
|
| 42 | 42 | * @param string $widthUnit The width unit. |
| 43 | 43 | * @param string $heightUnit The height unit. |
| 44 | 44 | */ |
@@ -129,7 +129,7 @@ |
||
| 129 | 129 | /** |
| 130 | 130 | * Sets the map type control style. |
| 131 | 131 | * |
| 132 | - * @param type $mapTypeControlStyle The map type control style. |
|
| 132 | + * @param string $mapTypeControlStyle The map type control style. |
|
| 133 | 133 | * |
| 134 | 134 | * @throws \Ivory\GoogleMap\Exception\ControlException If the map type control style is not valid. |
| 135 | 135 | */ |
@@ -80,7 +80,7 @@ |
||
| 80 | 80 | /** |
| 81 | 81 | * Sets the scale control style. |
| 82 | 82 | * |
| 83 | - * @param type $scaleControlStyle The scale control style. |
|
| 83 | + * @param string $scaleControlStyle The scale control style. |
|
| 84 | 84 | * |
| 85 | 85 | * @throws \Ivory\GoogleMap\Exception\ControlException If the scale control style is not valid. |
| 86 | 86 | */ |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | * |
| 37 | 37 | * @param \Ivory\GoogleMap\Helper\MapTypeIdHelper $mapTypeIdHelper The map type ID helper. |
| 38 | 38 | * @param \Ivory\GoogleMap\Helper\Controls\ControlPositionHelper $controlPositionHelper The control position helper. |
| 39 | - * @param \Ivory\GoogleMap\Helper\Controls\MapTypeControleStyleHelper $mapTypeControlStyleHelper The map type control style helper. |
|
| 39 | + * @param MapTypeControlStyleHelper $mapTypeControlStyleHelper The map type control style helper. |
|
| 40 | 40 | */ |
| 41 | 41 | public function __construct( |
| 42 | 42 | MapTypeIdHelper $mapTypeIdHelper = null, |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | * |
| 33 | 33 | * @param \Ivory\GoogleMap\Helper\Controls\ControlPositionHelper $controlPositionHelper The control position |
| 34 | 34 | * helper. |
| 35 | - * @param \Ivory\GoogleMap\Helper\Controls\ScaleControleStyleHelper $scaleControlStyleHelper The scale control |
|
| 35 | + * @param ScaleControlStyleHelper $scaleControlStyleHelper The scale control |
|
| 36 | 36 | * style helper. |
| 37 | 37 | */ |
| 38 | 38 | public function __construct( |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | * |
| 384 | 384 | * @throws \Ivory\GoogleMap\Exception\MapException If the map option does not exist. |
| 385 | 385 | * |
| 386 | - * @return mixed The map option value. |
|
| 386 | + * @return string The map option value. |
|
| 387 | 387 | */ |
| 388 | 388 | public function getMapOption($mapOption) |
| 389 | 389 | { |
@@ -1127,7 +1127,7 @@ discard block |
||
| 1127 | 1127 | /** |
| 1128 | 1128 | * Add a ground overlay to the map. |
| 1129 | 1129 | * |
| 1130 | - * @param \Ivory\GoogleMapBundle\Model\Overlays\GroupOverlay $groundOverlay The ground overlay to add. |
|
| 1130 | + * @param GroundOverlay $groundOverlay The ground overlay to add. |
|
| 1131 | 1131 | */ |
| 1132 | 1132 | public function addGroundOverlay(GroundOverlay $groundOverlay) |
| 1133 | 1133 | { |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | * Create a circle. |
| 34 | 34 | * |
| 35 | 35 | * @param \Ivory\GoogleMap\Base\Coordinate $center The circle center. |
| 36 | - * @param double $radius The circle radius. |
|
| 36 | + * @param integer $radius The circle radius. |
|
| 37 | 37 | */ |
| 38 | 38 | public function __construct(Coordinate $center = null, $radius = 1) |
| 39 | 39 | { |