IPv4Address::__construct()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 10
ccs 6
cts 6
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 5
nc 2
nop 1
crap 2
1
<?php
2
3
namespace ValueObjects\Web;
4
5
use ValueObjects\Exception\InvalidNativeArgumentException;
6
7
class IPv4Address extends IPAddress
8
{
9
    /**
10
     * Returns a new IPv4Address
11
     *
12
     * @param string $value
13
     */
14 2
    public function __construct($value)
15
    {
16 2
        $filteredValue = filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4);
17
18 2
        if ($filteredValue === false) {
19 1
            throw new InvalidNativeArgumentException($value, array('string (valid ipv4 address)'));
20
        }
21
22 1
        $this->value = $filteredValue;
23 1
    }
24
}
25