Completed
Push — master ( e6c0fb...469cfd )
by Nicolò
04:08 queued 01:58
created
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
      * @return self
59 51
      * @throws \BadMethodCallException
60 52
      */
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/Geography/Country.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * Returns a new Country object given a native PHP string country code
15 15
      *
16
-     * @param  string $code
17 16
      * @return self
18 17
      */
19 18
     public static function fromNative()
@@ -63,7 +62,7 @@  discard block
 block discarded – undo
63 62
     /**
64 63
      * Returns country name
65 64
      *
66
-     * @return StringLiteral
65
+     * @return \ValueObjects\StringLiteral\StringLiteral
67 66
      */
68 67
     public function getName()
69 68
     {
Please login to merge, or discard this patch.
src/Geography/Street.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -26,9 +26,6 @@
 block discarded – undo
26 26
     /**
27 27
      * Returns a new Street from native PHP string name and number.
28 28
      *
29
-     * @param string $name
30
-     * @param string $number
31
-     * @param string $elements
32 29
      * @return Street
33 30
      * @throws \BadFunctionCallException
34 31
      */
Please login to merge, or discard this patch.
src/Person/Name.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,6 @@
 block discarded – undo
32 32
     /**
33 33
      * Returns a Name objects form PHP native values
34 34
      *
35
-     * @param  string $first_name
36
-     * @param  string $middle_name
37
-     * @param  string $last_name
38 35
      * @return Name
39 36
      */
40 37
     public static function fromNative()
Please login to merge, or discard this patch.
src/Web/Url.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
     /**
152 152
      * Returns the port of the Url
153 153
      *
154
-     * @return PortNumberInterface
154
+     * @return ValueObjectInterface
155 155
      */
156 156
     public function getPort()
157 157
     {
Please login to merge, or discard this patch.