Completed
Pull Request — master (#53)
by Andreas
02:57 queued 20s
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/Geography/Street.php 1 patch
Doc Comments   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,9 +26,6 @@  discard block
 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
      */
@@ -95,7 +92,7 @@  discard block
 block discarded – undo
95 92
     /**
96 93
      * Returns street name
97 94
      *
98
-     * @return String
95
+     * @return StringLiteral
99 96
      */
100 97
     public function getName()
101 98
     {
@@ -105,7 +102,7 @@  discard block
 block discarded – undo
105 102
     /**
106 103
      * Returns street number
107 104
      *
108
-     * @return String
105
+     * @return StringLiteral
109 106
      */
110 107
     public function getNumber()
111 108
     {
Please login to merge, or discard this patch.
src/Person/Name.php 1 patch
Doc Comments   +4 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,9 +32,6 @@  discard block
 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()
@@ -65,7 +62,7 @@  discard block
 block discarded – undo
65 62
     /**
66 63
      * Returns the first name
67 64
      *
68
-     * @return String
65
+     * @return StringLiteral
69 66
      */
70 67
     public function getFirstName()
71 68
     {
@@ -75,7 +72,7 @@  discard block
 block discarded – undo
75 72
     /**
76 73
      * Returns the middle name
77 74
      *
78
-     * @return String
75
+     * @return StringLiteral
79 76
      */
80 77
     public function getMiddleName()
81 78
     {
@@ -85,7 +82,7 @@  discard block
 block discarded – undo
85 82
     /**
86 83
      * Returns the last name
87 84
      *
88
-     * @return String
85
+     * @return StringLiteral
89 86
      */
90 87
     public function getLastName()
91 88
     {
@@ -95,7 +92,7 @@  discard block
 block discarded – undo
95 92
     /**
96 93
      * Returns the full name
97 94
      *
98
-     * @return String
95
+     * @return StringLiteral
99 96
      */
100 97
     public function getFullName()
101 98
     {
Please login to merge, or discard this patch.
src/Web/Url.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     /**
132 132
      * Returns the password part of the Url
133 133
      *
134
-     * @return String
134
+     * @return StringLiteral
135 135
      */
136 136
     public function getPassword()
137 137
     {
@@ -151,7 +151,7 @@  discard block
 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
     {
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     /**
182 182
      * Returns the user part of the Url
183 183
      *
184
-     * @return String
184
+     * @return StringLiteral
185 185
      */
186 186
     public function getUser()
187 187
     {
Please login to merge, or discard this patch.