Hour   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 1
dl 0
loc 33
ccs 11
cts 11
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A equals() 0 4 2
A __construct() 0 16 5
1
<?php
2
/**
3
 * Copyright 2016 Alexandru Guzinschi <[email protected]>.
4
 *
5
 * This software may be modified and distributed under the terms
6
 * of the MIT license. See the LICENSE file for details.
7
 */
8
namespace Gentle\Embeddable\Time;
9
10
use Gentle\Embeddable\Embeddable;
11
12
/**
13
 * @author Alexandru Guzinschi <[email protected]>
14
 */
15
final class Hour extends Embeddable
16
{
17
    /**
18
     * @param string|int $value
19
     *
20
     * @throws \InvalidArgumentException
21
     * @throws \OutOfRangeException
22
     */
23 62
    public function __construct($value)
24
    {
25 62
        if (is_int($value)) {
26 19
            $value = (string)$value;
27
        }
28
29 62
        if (!is_string($value) || !ctype_digit($value)) {
30 8
            throw new \InvalidArgumentException(sprintf('Expected string or integer and got %s', gettype($value)));
31
        }
32
33 54
        if (!in_array((int)$value, range(0, 23), true)) {
34 7
            throw new \OutOfRangeException('Expected a numeric representation of an hour.');
35
        }
36
37 47
        $this->value = str_pad($value, 2, 0, STR_PAD_LEFT);
38 47
    }
39
40
    /**
41
     * {@inheritdoc}
42
     */
43 7
    public function equals(Embeddable $object)
44
    {
45 7
        return get_class($object) === 'Gentle\Embeddable\Time\Hour' && $this->value === (string)$object;
46
    }
47
}
48