Passed
Push — master ( 04cfc9...701580 )
by Thiago
45s
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/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/Charge.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @return the $charging
98
+     * @return string $charging
99 99
      */
100 100
     public function getCharging(): string
101 101
     {
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
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-     * @return the $number
74
+     * @return integer $number
75 75
      */
76 76
     public function getNumber(): int
77 77
     {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-     * @return the $validate
90
+     * @return DateTime $validate
91 91
      */
92 92
     public function getValidate(): DateTime
93 93
     {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return the $security
106
+     * @return integer $security
107 107
      */
108 108
     public function getSecurityNumber(): int
109 109
     {
Please login to merge, or discard this patch.
src/Base/Customer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @return mixed
83
+     * @return boolean
84 84
      */
85 85
     public function getHelpfulMaturity(): bool
86 86
     {
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
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
     }
215 215
 
216 216
     /**
217
-     * @return the $fatherName
217
+     * @return string $fatherName
218 218
      */
219 219
     public function getFatherName(): ?string
220 220
     {
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     }
231 231
 
232 232
     /**
233
-     * @return the $motherName
233
+     * @return string $motherName
234 234
      */
235 235
     public function getMotherName(): ?string
236 236
     {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     }
247 247
 
248 248
     /**
249
-     * @return the $person
249
+     * @return string $person
250 250
      */
251 251
     public function getPerson(): string
252 252
     {
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     }
263 263
 
264 264
     /**
265
-     * @return mixed
265
+     * @return string
266 266
      */
267 267
     public function getSalaried(): ?string
268 268
     {
Please login to merge, or discard this patch.