We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73da18b commit f364fdfCopy full SHA for f364fdf
.codeclimate.yml
@@ -14,7 +14,8 @@ engines:
14
checks:
15
CleanCode/ElseExpression:
16
enabled: false
17
-ratings:
+ Design/TooManyPublicMethods:
18
+ enabled: false
19
paths:
20
- "**.inc"
21
- "**.js"
src/Request/AbstractRequest.php
@@ -325,8 +325,8 @@ public function removeAuthentication(AuthenticationInterface $authentication)
325
*/
326
public function hasAuthentication(AuthenticationInterface $authentication)
327
{
328
- foreach ($this->authentications as $existingAuthentication) {
329
- if ($authentication == $existingAuthentication) {
+ foreach ($this->authentications as $existingAuth) {
+ if ($authentication == $existingAuth) {
330
return true;
331
}
332
0 commit comments