| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 26 | class InstitutionConfiguration |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | * @ORM\Id |
||
| 31 | * @ORM\Column(length=200) |
||
| 32 | */ |
||
| 33 | public $institution; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @ORM\Column(type="boolean") |
||
| 37 | * |
||
| 38 | * @var bool is the SSO on 2FA feature enabled? |
||
| 39 | */ |
||
| 40 | public $ssoOn2faEnabled; |
||
| 41 | |||
| 42 | private function __construct(string $institution, bool $ssoOn2faEnabled) |
||
| 48 |