Passed
Push — bugfix/authz-ra-determination-... ( 33b0b5 )
by Michiel
15:54
created
src/Surfnet/StepupMiddleware/ApiBundle/Identity/Service/ProfileService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddleware/ApiBundle/Identity/Service/IdentityService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.