Completed
Push — master ( 03d1bf...22863b )
by Adam
03:35
created
src/Number/Complex.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,8 +16,6 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * Returns a new Complex object from native PHP arguments
18 18
      *
19
-     * @param  float                        $real Real part of the complex number
20
-     * @param  float                        $im   Imaginary part of the complex number
21 19
      * @return Complex|ValueObjectInterface
22 20
      * @throws \BadMethodCallException
23 21
      */
@@ -79,7 +77,7 @@  discard block
 block discarded – undo
79 77
     /**
80 78
      * Returns the native value of the real and imaginary parts as an array
81 79
      *
82
-     * @return array
80
+     * @return double[]
83 81
      */
84 82
     public function toNative()
85 83
     {
Please login to merge, or discard this patch.
src/Number/Real.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * Returns a Real object given a PHP native float as parameter.
16 16
      *
17
-     * @param  float $number
18 17
      *
19 18
      * @return static
20 19
      */
@@ -28,7 +27,6 @@  discard block
 block discarded – undo
28 27
     /**
29 28
      * Returns a Real object given a PHP native float as parameter.
30 29
      *
31
-     * @param float $number
32 30
      */
33 31
     public function __construct($value)
34 32
     {
Please login to merge, or discard this patch.
src/StringLiteral/StringLiteral.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 StringLiteral object given a PHP native string as parameter.
15 15
      *
16
-     * @param  string $value
17 16
      * @return StringLiteral
18 17
      */
19 18
     public static function fromNative()
Please login to merge, or discard this patch.
src/Structure/Collection.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
     /**
16 16
      * Returns a new Collection object
17 17
      *
18
-     * @param  \SplFixedArray $array
19 18
      * @return self
20 19
      */
21 20
     public static function fromNative()
Please login to merge, or discard this patch.
src/Structure/Dictionary.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
     /**
11 11
      * Returns a new Dictionary object
12 12
      *
13
-     * @param  array $array
14 13
      * @return self
15 14
      */
16 15
     public static function fromNative()
Please login to merge, or discard this patch.
src/Structure/KeyValuePair.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * Returns a KeyValuePair from native PHP arguments evaluated as strings
19 19
      *
20
-     * @param string $key
21
-     * @param string $value
22 20
      * @return self
23 21
      * @throws \InvalidArgumentException
24 22
      */
Please login to merge, or discard this patch.
src/DateTime/TimeZone.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 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()
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
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
     /**
14 14
      * Returns a StringLiteral object given a PHP native string as parameter.
15 15
      *
16
-     * @param  string $value
17 16
      * @return StringLiteral
18 17
      */
19 18
     public static function fromNative()
Please login to merge, or discard this patch.
src/Geography/Address.php 1 patch
Doc Comments   -8 removed lines patch added patch discarded remove patch
@@ -47,14 +47,6 @@
 block discarded – undo
47 47
     /**
48 48
      * Returns a new Address from native PHP arguments
49 49
      *
50
-     * @param string $name
51
-     * @param string $street_name
52
-     * @param string $street_number
53
-     * @param string $district
54
-     * @param string $city
55
-     * @param string $region
56
-     * @param string $postal_code
57
-     * @param string $country_code
58 50
      *
59 51
      * @return self
60 52
      * @throws \BadMethodCallException
Please login to merge, or discard this patch.