• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

heiglandreas / holidayChecker / 13304001520

13 Feb 2025 09:00AM UTC coverage: 95.972% (-0.4%) from 96.394%
13304001520

push

github

web-flow
Merge pull request #175 from heiglandreas/updatePHPUnit

Update tests so they run with any PHPUnit version

405 of 422 relevant lines covered (95.97%)

11.75 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

94.44
/src/IteratorItem/Relative.php
1
<?php
2

3
declare(strict_types=1);
4

5
/**
6
 * Copyright (c) Andreas Heigl<andreas@heigl.org>
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<andreas@heigl.org>
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
        /** @var int */
43
        private $day;
44

45
        /** @var int */
46
        private $month;
47

48
        /** @var string */
49
        private $relation;
50

51
        /** @var bool */
52
        private $holiday;
53

54
        /** @var string */
55
        private $name;
56

57
        public function __construct(string $name, bool $holiday, int $day, int $month, string $relation)
58
        {
59
                $this->day = $day;
12✔
60
                $this->month = $month;
12✔
61
                $this->relation = $relation;
12✔
62
                $this->holiday = $holiday;
12✔
63
                $this->name = $name;
12✔
64
        }
65

66
        public function dateMatches(DateTimeInterface $date): bool
67
        {
68
                $year = (int) $date->format('Y');
6✔
69

70
                $day = new DateTimeImmutable(sprintf(
6✔
71
                        '%s-%s-%s',
6✔
72
                        $year,
6✔
73
                        $this->month,
6✔
74
                        $this->day
6✔
75
                ));
6✔
76

77
                /** @var DateTimeImmutable|false $day */
78
                $day = $day->modify($this->relation);
6✔
79

80
                if ($day === false) {
6✔
81
                        return false;
×
82
                }
83

84
                return $date->format('Y-m-d') === $day->format('Y-m-d');
6✔
85
        }
86

87
        public function getName(): string
88
        {
89
                return $this->name;
6✔
90
        }
91

92
        public function isHoliday(): bool
93
        {
94
                return $this->holiday;
6✔
95
        }
96
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc