Skip to content

Commit dd3cdc5

Browse files
committed
Fix lint issues
1 parent b5476d5 commit dd3cdc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Security/Http/AccessToken/Cas/Cas2Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function getUserBadgeFrom(string $accessToken): UserBadge
6565
$attributes[$key] = (string) $child;
6666
}
6767
}
68-
}
68+
}
6969
return new UserBadge($userIdentifier, null, $attributes);
7070
}
7171

src/Symfony/Component/Security/Http/Tests/AccessToken/Cas/Cas2HandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function testWithValidTicket()
4747
$this->assertEquals(new UserBadge('lobster', null, [
4848
'email' => '[email protected]',
4949
'role' => 'ROLE_USER',
50-
]), $userbadge);
50+
]), $userbadge);
5151
}
5252

5353
public function testWithNoAttributes()

0 commit comments

Comments
 (0)