| @@ 295-310 (lines=16) @@ | ||
| 292 | ); |
|
| 293 | } |
|
| 294 | ||
| 295 | public function updateUseRaOption(InstitutionAuthorizationOption $useRaOption) |
|
| 296 | { |
|
| 297 | if ($this->useRaOption !== null |
|
| 298 | && $this->useRaOption->equals($useRaOption) |
|
| 299 | ) { |
|
| 300 | return; |
|
| 301 | } |
|
| 302 | ||
| 303 | $this->apply( |
|
| 304 | new UseRaOptionChangedEvent( |
|
| 305 | $this->institutionConfigurationId, |
|
| 306 | $this->institution, |
|
| 307 | $useRaOption |
|
| 308 | ) |
|
| 309 | ); |
|
| 310 | } |
|
| 311 | ||
| 312 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
| 313 | { |
|
| @@ 312-327 (lines=16) @@ | ||
| 309 | ); |
|
| 310 | } |
|
| 311 | ||
| 312 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
| 313 | { |
|
| 314 | if ($this->useRaaOption !== null |
|
| 315 | && $this->useRaaOption->equals($useRaaOption) |
|
| 316 | ) { |
|
| 317 | return; |
|
| 318 | } |
|
| 319 | ||
| 320 | $this->apply( |
|
| 321 | new UseRaaOptionChangedEvent( |
|
| 322 | $this->institutionConfigurationId, |
|
| 323 | $this->institution, |
|
| 324 | $useRaaOption |
|
| 325 | ) |
|
| 326 | ); |
|
| 327 | } |
|
| 328 | ||
| 329 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
| 330 | { |
|
| @@ 329-344 (lines=16) @@ | ||
| 326 | ); |
|
| 327 | } |
|
| 328 | ||
| 329 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
| 330 | { |
|
| 331 | if ($this->selectRaaOption !== null |
|
| 332 | && $this->selectRaaOption->equals($selectRaaOption) |
|
| 333 | ) { |
|
| 334 | return; |
|
| 335 | } |
|
| 336 | ||
| 337 | $this->apply( |
|
| 338 | new SelectRaaOptionChangedEvent( |
|
| 339 | $this->institutionConfigurationId, |
|
| 340 | $this->institution, |
|
| 341 | $selectRaaOption |
|
| 342 | ) |
|
| 343 | ); |
|
| 344 | } |
|
| 345 | ||
| 346 | public function updateAllowedSecondFactorList(AllowedSecondFactorList $allowedSecondFactorList) |
|
| 347 | { |
|