| @@ 319-334 (lines=16) @@ | ||
| 316 | ); |
|
| 317 | } |
|
| 318 | ||
| 319 | public function updateUseRaOption(InstitutionAuthorizationOption $useRaOption) |
|
| 320 | { |
|
| 321 | if ($this->useRaOption !== null |
|
| 322 | && $this->useRaOption->equals($useRaOption) |
|
| 323 | ) { |
|
| 324 | return; |
|
| 325 | } |
|
| 326 | ||
| 327 | $this->apply( |
|
| 328 | new UseRaOptionChangedEvent( |
|
| 329 | $this->institutionConfigurationId, |
|
| 330 | $this->institution, |
|
| 331 | $useRaOption |
|
| 332 | ) |
|
| 333 | ); |
|
| 334 | } |
|
| 335 | ||
| 336 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
| 337 | { |
|
| @@ 336-351 (lines=16) @@ | ||
| 333 | ); |
|
| 334 | } |
|
| 335 | ||
| 336 | public function updateUseRaaOption(InstitutionAuthorizationOption $useRaaOption) |
|
| 337 | { |
|
| 338 | if ($this->useRaaOption !== null |
|
| 339 | && $this->useRaaOption->equals($useRaaOption) |
|
| 340 | ) { |
|
| 341 | return; |
|
| 342 | } |
|
| 343 | ||
| 344 | $this->apply( |
|
| 345 | new UseRaaOptionChangedEvent( |
|
| 346 | $this->institutionConfigurationId, |
|
| 347 | $this->institution, |
|
| 348 | $useRaaOption |
|
| 349 | ) |
|
| 350 | ); |
|
| 351 | } |
|
| 352 | ||
| 353 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
| 354 | { |
|
| @@ 353-368 (lines=16) @@ | ||
| 350 | ); |
|
| 351 | } |
|
| 352 | ||
| 353 | public function updateSelectRaaOption(InstitutionAuthorizationOption $selectRaaOption) |
|
| 354 | { |
|
| 355 | if ($this->selectRaaOption !== null |
|
| 356 | && $this->selectRaaOption->equals($selectRaaOption) |
|
| 357 | ) { |
|
| 358 | return; |
|
| 359 | } |
|
| 360 | ||
| 361 | $this->apply( |
|
| 362 | new SelectRaaOptionChangedEvent( |
|
| 363 | $this->institutionConfigurationId, |
|
| 364 | $this->institution, |
|
| 365 | $selectRaaOption |
|
| 366 | ) |
|
| 367 | ); |
|
| 368 | } |
|
| 369 | ||
| 370 | public function updateAllowedSecondFactorList(AllowedSecondFactorList $allowedSecondFactorList) |
|
| 371 | { |
|