transformer_refactoring #44

Merged
linos merged 42 commits from transformer_refactoring into main 2024-10-02 19:15:29 +02:00
Showing only changes of commit 516bfd33d8 - Show all commits

View file

@ -162,14 +162,14 @@ abstract class Event extends Post {
/**
* Compose a human readable formatted start time.
*/
protected function format_start_time(): ?string {
protected function format_start_time(): string {
return $this->format_time( $this->get_start_time() );
}
/**
* Compose a human readable formatted end time.
*/
protected function format_end_time(): ?string {
protected function format_end_time(): string {
return $this->format_time( $this->get_end_time() );
}