Passed
Push — master ( 98de4f...224db0 )
by Thiago
30s
created
src/Base/Address.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @return the $address
121
+     * @return string $address
122 122
      */
123 123
     public function getAddress()
124 124
     {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     }
135 135
 
136 136
     /**
137
-     * @return the $number
137
+     * @return string $number
138 138
      */
139 139
     public function getNumber(): string
140 140
     {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     }
151 151
 
152 152
     /**
153
-     * @return the $district
153
+     * @return string $district
154 154
      */
155 155
     public function getDistrict(): string
156 156
     {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @return the $complement
169
+     * @return string $complement
170 170
      */
171 171
     public function getComplement(): string
172 172
     {
Please login to merge, or discard this patch.
src/Base/Charge.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     ];
88 88
 
89 89
     /**
90
-     * @return the $charging
90
+     * @return string $charging
91 91
      */
92 92
     public function getCharging()
93 93
     {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     }
108 108
 
109 109
     /**
110
-     * @return Occurrence
110
+     * @return string
111 111
      */
112 112
     public function getOccurrence()
113 113
     {
Please login to merge, or discard this patch.
src/Base/CreditCard.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @return the $number
62
+     * @return string $number
63 63
      */
64 64
     public function getNumber(): string
65 65
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @return the $validate
78
+     * @return DateTime $validate
79 79
      */
80 80
     public function getValidate(): DateTime
81 81
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @return the $security
94
+     * @return string $security
95 95
      */
96 96
     public function getSecurityNumber(): string
97 97
     {
Please login to merge, or discard this patch.
src/Base/Document.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @return string
43
+     * @return integer
44 44
      */
45 45
     public function getType(): int
46 46
     {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-     * @param string $type
51
+     * @param integer $type
52 52
      */
53 53
     public function setType(int $type)
54 54
     {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @return mixed
59
+     * @return integer
60 60
      */
61 61
     public function getNumber(): int
62 62
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param mixed $number
67
+     * @param integer $number
68 68
      */
69 69
     public function setNumber(int $number)
70 70
     {
Please login to merge, or discard this patch.
src/Base/Person.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     }
199 199
 
200 200
     /**
201
-     * @return the $fatherName
201
+     * @return string $fatherName
202 202
      */
203 203
     public function getFatherName(): string
204 204
     {
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
     }
215 215
 
216 216
     /**
217
-     * @return the $motherName
217
+     * @return string $motherName
218 218
      */
219 219
     public function getMotherName(): string
220 220
     {
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     }
231 231
 
232 232
     /**
233
-     * @return the $person
233
+     * @return string $person
234 234
      */
235 235
     public function getPerson(): string
236 236
     {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     }
247 247
 
248 248
     /**
249
-     * @return mixed
249
+     * @return string
250 250
      */
251 251
     public function getSalaried(): string
252 252
     {
Please login to merge, or discard this patch.