Completed
Push — feature/fine-grained-authoriza... ( cf4133...3e186d )
by Michiel
97:22 queued 87:36
created
src/Surfnet/Stepup/Identity/Entity/RegistrationAuthorityCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * @param Institution $institution
50
-     * @return RegistrationAuthority
50
+     * @return boolean
51 51
      */
52 52
     public function exists(Institution $institution)
53 53
     {
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Identity/Entity/InstitutionCollection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @param Institution $institution
52
-     * @return Institution
52
+     * @return InstitutionRole
53 53
      */
54 54
     public function get(Institution $institution)
55 55
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     /**
60 60
      * @param Institution $institution
61
-     * @return Institution
61
+     * @return boolean
62 62
      */
63 63
     public function exists(Institution $institution)
64 64
     {
Please login to merge, or discard this patch.
Stepup/Identity/Event/RegistrationAuthorityInformationAmendedEvent.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
      * @param NameId $nameId
49 49
      * @param Location $location
50 50
      * @param ContactInformation $contactInformation
51
-     * @param Institution $raInstitution
52 51
      */
53 52
     public function __construct(
54 53
         IdentityId $identityId,
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Identity/Identity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1001,7 +1001,7 @@
 block discarded – undo
1001 1001
     /**
1002 1002
      * This method is kept to be backwards compatible for changes before FGA
1003 1003
      *
1004
-     * @param AppointedAsRaaEvent $event
1004
+     * @param IdentityAccreditedAsRaEvent $event
1005 1005
      */
1006 1006
     protected function applyIdentityAccreditedAsRaEvent(IdentityAccreditedAsRaEvent $event)
1007 1007
     {
Please login to merge, or discard this patch.
StepupMiddleware/ApiBundle/Identity/Repository/RaListingRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * @param IdentityId $identityId The RA's identity id.
50
-     * @return null|RaListing
50
+     * @return RaListing
51 51
      */
52 52
     public function findByIdentityId(IdentityId $identityId)
53 53
     {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * @param IdentityId $identityId The RA's identity id.
59 59
      * @param Institution $raInstitution
60
-     * @return null|RaListing
60
+     * @return RaListing
61 61
      */
62 62
     public function findByIdentityIdAndRaInstitution(IdentityId $identityId, Institution $raInstitution)
63 63
     {
Please login to merge, or discard this patch.