Completed
Pull Request — master (#53)
by Andreas
02:57 queued 20s
created
src/Climate/RelativeHumidity.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
     /**
15 15
      * Returns a new RelativeHumidity from native int value
16 16
      *
17
-     * @param int $value
18 17
      * @return RelativeHumidity
19 18
      */
20 19
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/Date.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -20,9 +20,6 @@
 block discarded – undo
20 20
     /**
21 21
      * Returns a new Date from native year, month and day values
22 22
      *
23
-     * @param  int    $year
24
-     * @param  string $month
25
-     * @param  int    $day
26 23
      * @return Date
27 24
      */
28 25
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/DateTime.php 1 patch
Doc Comments   -6 removed lines patch added patch discarded remove patch
@@ -16,12 +16,6 @@
 block discarded – undo
16 16
     /**
17 17
      * Returns a new DateTime object from native values
18 18
      *
19
-     * @param  int      $year
20
-     * @param  string   $month
21
-     * @param  int      $day
22
-     * @param  int      $hour
23
-     * @param  int      $minute
24
-     * @param  int      $second
25 19
      * @return DateTime
26 20
      */
27 21
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/DateTimeWithTimeZone.php 1 patch
Doc Comments   -7 removed lines patch added patch discarded remove patch
@@ -16,13 +16,6 @@
 block discarded – undo
16 16
     /**
17 17
      * Returns a new DateTime object from native values
18 18
      *
19
-     * @param int    $year
20
-     * @param string $month
21
-     * @param int    $day
22
-     * @param int    $hour
23
-     * @param int    $minute
24
-     * @param int    $second
25
-     * @param string $timezone
26 19
      *
27 20
      * @return DateTimeWithTimeZone
28 21
      */
Please login to merge, or discard this patch.
src/DateTime/Hour.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
     /**
14 14
      * Returns a new Hour from native int value
15 15
      *
16
-     * @param  int  $value
17 16
      * @return Hour
18 17
      */
19 18
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/Minute.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
     /**
15 15
      * Returns a new Minute from native int value
16 16
      *
17
-     * @param  int    $value
18 17
      * @return Minute
19 18
      */
20 19
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/Time.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * Returns a nee Time object from native int hour, minute and second
21 21
      *
22
-     * @param  int  $hour
23
-     * @param  int  $minute
24
-     * @param  int  $second
25 22
      * @return self
26 23
      */
27 24
     public static function fromNative()
Please login to merge, or discard this patch.
src/DateTime/TimeZone.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Returns a new Time object from native timezone name
17 17
      *
18
-     * @param  string $name
19 18
      * @return self
20 19
      */
21 20
     public static function fromNative()
@@ -91,7 +90,7 @@  discard block
 block discarded – undo
91 90
     /**
92 91
      * Returns timezone name
93 92
      *
94
-     * @return String
93
+     * @return StringLiteral
95 94
      */
96 95
     public function getName()
97 96
     {
Please login to merge, or discard this patch.
src/Geography/Coordinate.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * Returns a degrees/minutes/seconds representation of the coordinate
117 117
      *
118
-     * @return String
118
+     * @return StringLiteral
119 119
      */
120 120
     public function toDegreesMinutesSeconds()
121 121
     {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     /**
130 130
      * Returns a decimal minutes representation of the coordinate
131 131
      *
132
-     * @return String
132
+     * @return StringLiteral
133 133
      */
134 134
     public function toDecimalMinutes()
135 135
     {
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * Returns a Universal Transverse Mercator projection representation of the coordinate in meters
145 145
      *
146
-     * @return String
146
+     * @return StringLiteral
147 147
      */
148 148
     public function toUniversalTransverseMercator()
149 149
     {
Please login to merge, or discard this patch.