Test Setup Failed
Push — 3.0.0-dev ( 6abede...16ae24 )
by Eduardo Gulias
01:43
created
Tests/EmailValidator/EmailLexerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
         return $chars;
64 64
     }
65 65
 
66
+    /**
67
+     * @param integer $code_point
68
+     */
66 69
     protected function utf8Chr($code_point)
67 70
     {
68 71
 
Please login to merge, or discard this patch.
EmailValidator/EmailValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @return array
53
+     * @return Warning\Warning[]
54 54
      */
55 55
     public function getWarnings()
56 56
     {
Please login to merge, or discard this patch.
EmailValidator/Parser/DomainPart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
     }
184 184
 
185 185
     /**
186
-     * @return string|false
186
+     * @return Result
187 187
      */
188 188
     protected function parseDomainLiteral() : Result
189 189
     {
Please login to merge, or discard this patch.
EmailValidator/Parser/DomainLiteral.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@  discard block
 block discarded – undo
137 137
         }
138 138
     }
139 139
     
140
+    /**
141
+     * @param string $addressLiteralIPv4
142
+     */
140 143
     public function convertIPv4ToIPv6($addressLiteralIPv4) : string
141 144
     {
142 145
         $matchesIP  = array();
@@ -161,7 +164,7 @@  discard block
 block discarded – undo
161 164
     /**
162 165
      * @param string $addressLiteral
163 166
      *
164
-     * @return string
167
+     * @return boolean
165 168
      */
166 169
     protected function checkIPV4Tag($addressLiteral) : bool
167 170
     {
Please login to merge, or discard this patch.