begin = $begin; $this->end = $end; $this->include_null_date = (bool) $include_null_date; } /** * @return DateTime|null */ public function get_begin() { return $this->begin; } /** * @return DateTime|null */ public function get_end() { return $this->end; } /** * @return bool */ public function is_include_null_date() { return $this->include_null_date; } }