Relative   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 50
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 5
eloc 22
c 1
b 0
f 0
dl 0
loc 50
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
A isHoliday() 0 3 1
A dateMatches() 0 19 2
A getName() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * Copyright (c) Andreas Heigl<[email protected]>
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a copy
9
 * of this software and associated documentation files (the "Software"), to deal
10
 * in the Software without restriction, including without limitation the rights
11
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
 * copies of the Software, and to permit persons to whom the Software is
13
 * furnished to do so, subject to the following conditions:
14
 *
15
 * The above copyright notice and this permission notice shall be included in
16
 * all copies or substantial portions of the Software.
17
 *
18
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
 * THE SOFTWARE.
25
 *
26
 * @author    Andreas Heigl<[email protected]>
27
 * @copyright Andreas Heigl
28
 * @license   http://www.opensource.org/licenses/mit-license.php MIT-License
29
 * @since     08.03.2017
30
 * @link      http://github.com/heiglandreas/org.heigl.Holidaychecker
31
 */
32
33
namespace Org_Heigl\Holidaychecker\IteratorItem;
34
35
use DateTimeImmutable;
36
use DateTimeInterface;
37
use Org_Heigl\Holidaychecker\HolidayIteratorItemInterface;
38
use function sprintf;
39
40
class Relative implements HolidayIteratorItemInterface
41
{
42
	private $day;
43
44
	private $month;
45
46
	private $relation;
47
48
	private $holiday;
49
50
	private $name;
51
52
	public function __construct(string $name, bool $holiday, int $day, int $month, string $relation)
53
	{
54
		$this->day = $day;
55
		$this->month = $month;
56
		$this->relation = $relation;
57
		$this->holiday = $holiday;
58
		$this->name = $name;
59
	}
60
61
	public function dateMatches(DateTimeInterface $date): bool
62
	{
63
		$year = (int) $date->format('Y');
64
65
		$day = new DateTimeImmutable(sprintf(
66
			'%s-%s-%s',
67
			$year,
68
			$this->month,
69
			$this->day
70
		));
71
72
		/** @var DateTimeImmutable|false $day */
73
		$day = $day->modify($this->relation);
74
75
		if ($day === false) {
76
			return false;
77
		}
78
79
		return $date->format('Y-m-d') === $day->format('Y-m-d');
80
	}
81
82
	public function getName(): string
83
	{
84
		return $this->name;
85
	}
86
87
	public function isHoliday(): bool
88
	{
89
		return $this->holiday;
90
	}
91
}
92