/** * Sets the date. * * @param mixed $date */ protected function set_date($date) { DateTimePropertySupport::set($this->date, $date); }
/** * Sets the date and time at which the record was start. * * @param mixed $datetime */ protected function set_start_at($datetime) { DateTimePropertySupport::set($this->start_at, $datetime); }
/** * Sets the date and time at which the record was created. * * @param mixed $datetime */ protected function set_created($datetime) { DateTimePropertySupport::set($this->created, $datetime); }
/** * Sets the date and time at which the record was finish. * * @param mixed $datetime */ protected function set_finish_at($datetime) { DateTimePropertySupport::set($this->finish_at, $datetime); }
/** * Sets the date and time at which the user was logged. * * @param mixed $datetime */ protected function set_logged_at($datetime) { DateTimePropertySupport::datetime_set($this->logged_at, $datetime); }