Example #1
0
 /**
  * Returns the date.
  *
  * @return DateTime
  */
 protected function get_date()
 {
     return DateTimePropertySupport::get($this->date);
 }
 /**
  * Returns the date and time at which the record was start.
  *
  * @return DateTime
  */
 protected function get_start_at()
 {
     return DateTimePropertySupport::get($this->start_at);
 }
 /**
  * Returns the date and time at which the record was created.
  *
  * @return \ICanBoogie\DateTime
  */
 protected function get_created()
 {
     return DateTimePropertySupport::get($this->created);
 }
 /**
  * Returns the date and time at which the record was finish.
  *
  * @return DateTime
  */
 protected function get_finish_at()
 {
     return DateTimePropertySupport::get($this->finish_at);
 }
 /**
  * Returns the date and time at which the record was updated.
  *
  * @return DateTime
  */
 protected function get_updated_at()
 {
     return DateTimePropertySupport::get($this->updated_at);
 }