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