Completed
Push — master ( 23ba22...03d1bf )
by Adam
03:02
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/Enum/Enum.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
     /**
12 12
      * Returns a new Enum object from passed value matching argument
13 13
      *
14
-     * @param  string $value
15 14
      * @return static
16 15
      */
17 16
     public static function fromNative()
Please login to merge, or discard this patch.