| @@ 169-181 (lines=13) @@ | ||
| 166 | ); | |
| 167 | } | |
| 168 | ||
| 169 | public function complyWithRevocation(IdentityId $authorityId) | |
| 170 |     { | |
| 171 | $this->apply( | |
| 172 | new CompliedWithUnverifiedSecondFactorRevocationEvent( | |
| 173 | $this->identity->getId(), | |
| 174 | $this->identity->getInstitution(), | |
| 175 | $this->id, | |
| 176 | $this->type, | |
| 177 | $this->secondFactorIdentifier, | |
| 178 | $authorityId | |
| 179 | ) | |
| 180 | ); | |
| 181 | } | |
| 182 | ||
| 183 | /** | |
| 184 | * @param DateTime $registrationRequestedAt | |
| @@ 104-116 (lines=13) @@ | ||
| 101 | ); | |
| 102 | } | |
| 103 | ||
| 104 | public function complyWithRevocation(IdentityId $authorityId) | |
| 105 |     { | |
| 106 | $this->apply( | |
| 107 | new CompliedWithVettedSecondFactorRevocationEvent( | |
| 108 | $this->identity->getId(), | |
| 109 | $this->identity->getInstitution(), | |
| 110 | $this->id, | |
| 111 | $this->type, | |
| 112 | $this->secondFactorIdentifier, | |
| 113 | $authorityId | |
| 114 | ) | |
| 115 | ); | |
| 116 | } | |
| 117 | ||
| 118 | protected function applyIdentityForgottenEvent(IdentityForgottenEvent $event) | |
| 119 |     { | |
| @@ 172-184 (lines=13) @@ | ||
| 169 | ); | |
| 170 | } | |
| 171 | ||
| 172 | public function complyWithRevocation(IdentityId $authorityId) | |
| 173 |     { | |
| 174 | $this->apply( | |
| 175 | new CompliedWithVerifiedSecondFactorRevocationEvent( | |
| 176 | $this->identity->getId(), | |
| 177 | $this->identity->getInstitution(), | |
| 178 | $this->id, | |
| 179 | $this->type, | |
| 180 | $this->secondFactorIdentifier, | |
| 181 | $authorityId | |
| 182 | ) | |
| 183 | ); | |
| 184 | } | |
| 185 | ||
| 186 | /** | |
| 187 | * @return VettedSecondFactor | |