Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
Closure
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 4
56
0.00% covered (danger)
0.00%
0 / 1
 setTimestampFromDateformat
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
 getDateTime
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 isNewerThan
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
12
 isAffectingAvailability
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace BO\Zmsentities;
4
5class Closure extends Schema\Entity
6{
7    const PRIMARY = 'id';
8
9    public static $schema = "closure.json";
10
11    public function setTimestampFromDateformat($fromFormat = 'd.m.Y')
12    {
13        $dateTime = \DateTimeImmutable::createFromFormat($fromFormat, $this->date, new \DateTimeZone('UTC'));
14        if ($dateTime) {
15            $this->date = $dateTime->modify('00:00:00')->getTimestamp();
16        }
17        return $this;
18    }
19
20    public function getDateTime()
21    {
22        return (new \BO\Zmsentities\Helper\DateTime($this->year . '-' . $this->month . '-' . $this->day));
23    }
24
25    /**
26     * Check if closure is newer than given time
27     *
28     * @return bool
29     */
30    public function isNewerThan(\DateTimeInterface $dateTime, $filterByAvailability = null, $now = null)
31    {
32        if ($filterByAvailability && !$this->isAffectingAvailability($filterByAvailability, $now)) {
33            return false;
34        }
35        return ($dateTime->getTimestamp() < $this->lastChange);
36    }
37
38    public function isAffectingAvailability(Availability $availabiliy, \DateTimeInterface $now)
39    {
40        return $availabiliy->isBookable($this->getDateTime(), $now);
41    }
42}