GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( a61686...de9c1a )
by Xaf
26s
created
src/Bban/SpainBban.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @param $bankCode
124
+     * @param string $bankCode
125 125
      *
126 126
      * @throws InvalidArgumentException
127 127
      */
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @param $branchCode
136
+     * @param string $branchCode
137 137
      *
138 138
      * @throws InvalidArgumentException
139 139
      */
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @param $checkDigits
148
+     * @param string $checkDigits
149 149
      *
150 150
      * @throws InvalidArgumentException
151 151
      */
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     }
158 158
 
159 159
     /**
160
-     * @param $accountNumber
160
+     * @param string $accountNumber
161 161
      *
162 162
      * @throws InvalidArgumentException
163 163
      */
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
     }
170 170
 
171 171
     /**
172
-     * @param $bankCode
173
-     * @param $branchCode
174
-     * @param $checkDigits
175
-     * @param $accountNumber
172
+     * @param string $bankCode
173
+     * @param string $branchCode
174
+     * @param string $checkDigits
175
+     * @param string $accountNumber
176 176
      *
177 177
      * @throws InvalidArgumentException
178 178
      */
Please login to merge, or discard this patch.
src/Iban.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     }
159 159
 
160 160
     /**
161
-     * @param $countryCode
161
+     * @param string $countryCode
162 162
      *
163 163
      * @throws InvalidArgumentException
164 164
      */
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     }
171 171
 
172 172
     /**
173
-     * @param $checkDigits
173
+     * @param string $checkDigits
174 174
      *
175 175
      * @throws InvalidArgumentException
176 176
      */
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     }
202 202
 
203 203
     /**
204
-     * @param $countryCode
204
+     * @param string $countryCode
205 205
      *
206 206
      * @throws InvalidArgumentException
207 207
      */
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
     }
219 219
 
220 220
     /**
221
-     * @param $countryCode
222
-     * @param $checkDigits
221
+     * @param string $countryCode
222
+     * @param string $checkDigits
223 223
      * @param BbanInterface $bban
224 224
      *
225 225
      * @return string
Please login to merge, or discard this patch.