@@ -87,7 +87,7 @@ |
||
| 87 | 87 | $this->logger->notice(sprintf('No Identity found with IdentityId %s', $identityId)); |
| 88 | 88 | return null; |
| 89 | 89 | } |
| 90 | - $this->logger->notice(sprintf('Found IdentityId "%s" NameId "%s"', $identityId, $identity->nameId )); |
|
| 90 | + $this->logger->notice(sprintf('Found IdentityId "%s" NameId "%s"', $identityId, $identity->nameId)); |
|
| 91 | 91 | |
| 92 | 92 | $raListing = $this->raListingRepository->findByIdentityId(new IdentityId($identityId)); |
| 93 | 93 | $isRa = $this->getRoleFromListing($raListing, AuthorityRole::ROLE_RA); |
@@ -155,7 +155,7 @@ |
||
| 155 | 155 | */ |
| 156 | 156 | private function findRegistrationAuthorityCredentialsByIdentity(Identity $identity) |
| 157 | 157 | { |
| 158 | - $this->logger->notice(sprintf('Getting profile for IdentityId "%s" NameId "%s"', $identity->id, $identity->nameId )); |
|
| 158 | + $this->logger->notice(sprintf('Getting profile for IdentityId "%s" NameId "%s"', $identity->id, $identity->nameId)); |
|
| 159 | 159 | $raListing = $this->raListingRepository->findByIdentityId(new IdentityId($identity->id)); |
| 160 | 160 | $sraa = $this->sraaRepository->findByNameId($identity->nameId); |
| 161 | 161 | |