InstitutionConfiguration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 28
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php declare(strict_types=1);
2
3
/**
4
 * Copyright 2022 SURFnet B.V.
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
namespace Surfnet\StepupGateway\GatewayBundle\Entity;
20
21
use Doctrine\ORM\Mapping as ORM;
22
23
/**
24
 * @ORM\Entity(repositoryClass="Surfnet\StepupGateway\GatewayBundle\Entity\InstitutionConfigurationRepository")
25
 */
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
    /**
43
     * * @ORM\Column(type="boolean")
44
     *
45
     * @var bool is the SSO registration bypass feature enabled?
46
     */
47
    public bool $ssoRegistrationBypass;
48
49
    private function __construct(string $institution, bool $ssoOn2faEnabled, bool $ssoRegistrationBypass)
50
    {
51
        $this->institution = $institution;
52
        $this->ssoOn2faEnabled = $ssoOn2faEnabled;
53
        $this->ssoRegistrationBypass = $ssoRegistrationBypass;
54
    }
55
}
56