GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#122)
by Raldo
05:37
created
src/Base/Coordinate.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Base/Point.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Base/Size.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Controls/MapTypeControl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Controls/ScaleControl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Helper/Controls/MapTypeControlHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
src/Helper/Controls/ScaleControlHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.
src/Map.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Overlays/Circle.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.