Completed
Push — master ( 23ba22...03d1bf )
by Adam
03:02
created
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/Web/Url.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
      * Returns a new Url object
66 66
      *
67 67
      * @param SchemeName          $scheme
68
-     * @param String              $user
69
-     * @param String              $password
68
+     * @param StringLiteral              $user
69
+     * @param StringLiteral              $password
70 70
      * @param Domain              $domain
71 71
      * @param Path                $path
72 72
      * @param PortNumberInterface $port
@@ -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.