Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 20, 2022
1 parent fe663bf commit d2a6bf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DataCollector/SecurityDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function __construct(TokenStorageInterface $tokenStorage = null, RoleHier
*
* @param \Throwable|null $exception
*/
public function collect(Request $request, Response $response/*, \Throwable $exception = null*/)
public function collect(Request $request, Response $response/* , \Throwable $exception = null */)
{
if (null === $this->tokenStorage) {
$this->data = [
Expand Down
2 changes: 1 addition & 1 deletion Tests/Functional/UserPasswordEncoderCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public function testEncodePasswordAsksNonProvidedUserClass()
[2] Custom\Class\Test\User
[3] Symfony\Component\Security\Core\User\User
EOTXT
, $this->passwordEncoderCommandTester->getDisplay(true));
, $this->passwordEncoderCommandTester->getDisplay(true));
}

public function testNonInteractiveEncodePasswordUsesFirstUserClass()
Expand Down

0 comments on commit d2a6bf4

Please sign in to comment.