IpType::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
crap 1
1
<?php
2
declare(strict_types = 1);
3
/**
4
 *
5
 * Copyright (C) 2018  Ross Mitchell
6
 *
7
 * This file is part of RossMitchell/UpdateCloudFlare.
8
 *
9
 * RossMitchell/UpdateCloudFlare is free software: you can redistribute
10
 * it and/or modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation, either version 3 of the
12
 * License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
 */
22
23
namespace RossMitchell\UpdateCloudFlare\Data;
24
25
use Symfony\Component\Console\Exception\LogicException;
26
27
/**
28
 * Class IpType
29
 * @package RossMitchell\UpdateCloudFlare\Data
30
 */
31
class IpType
32
{
33
    public const IP_V4 = 'A';
34
    public const IP_V6 = 'AAAA';
35
36
    /**
37
     * @var string
38
     */
39
    private $type;
40
41
    /**
42
     * IpType constructor.
43
     *
44
     * @param string $type
45
     *
46
     * @throws LogicException
47
     */
48 34
    public function __construct(string $type)
49
    {
50 34
        $this->setType($type);
51 33
    }
52
53
    /**
54
     * @return string
55
     */
56 6
    public function getType(): string
57
    {
58 6
        return $this->type;
59
    }
60
61
    /**
62
     * @param string $type
63
     *
64
     * @return void
65
     * @throws LogicException
66
     */
67 34
    private function setType(string $type): void
68
    {
69
        switch ($type) {
70 34
            case self::IP_V4:
71 2
            case self::IP_V6;
72 33
                $this->type = $type;
73 33
                break;
74
            default:
75 1
                throw new LogicException('IP Type must be either ' . self::IP_V4 . ' or ' . self::IP_V6);
76
        }
77 33
    }
78
79
}
80