summaryrefslogtreecommitdiffstats
path: root/vendor/simshaun/recurr/src/Recurr/DateInclusion.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/simshaun/recurr/src/Recurr/DateInclusion.php')
-rw-r--r--vendor/simshaun/recurr/src/Recurr/DateInclusion.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/vendor/simshaun/recurr/src/Recurr/DateInclusion.php b/vendor/simshaun/recurr/src/Recurr/DateInclusion.php
new file mode 100644
index 0000000..0ee6e84
--- /dev/null
+++ b/vendor/simshaun/recurr/src/Recurr/DateInclusion.php
@@ -0,0 +1,48 @@
+<?php
+
+/*
+ * Copyright 2015 Shaun Simmons
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Recurr;
+
+/**
+ * Class DateInclusion is a container for a single \DateTimeInterface.
+ *
+ * The purpose of this class is to hold a flag that specifies whether
+ * or not the \DateTimeInterface was created from a DATE only, or with a
+ * DATETIME.
+ *
+ * It also tracks whether or not the inclusion is explicitly set to UTC.
+ *
+ * @package Recurr
+ * @author Shaun Simmons <shaun@envysphere.com>
+ */
+class DateInclusion
+{
+ /** @var \DateTimeInterface */
+ public $date;
+
+ /** @var bool Day of year */
+ public $hasTime;
+
+ /** @var bool */
+ public $isUtcExplicit;
+
+ /**
+ * Constructor
+ *
+ * @param \DateTimeInterface $date
+ * @param bool $hasTime
+ * @param bool $isUtcExplicit
+ */
+ public function __construct(\DateTimeInterface $date, $hasTime = true, $isUtcExplicit = false)
+ {
+ $this->date = $date;
+ $this->hasTime = $hasTime;
+ $this->isUtcExplicit = $isUtcExplicit;
+ }
+}