This repository has been archived on 2024-07-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nettsiden-old/src/pvv/side/event.php

23 lines
382 B
PHP

<?php //declare(strict_types=1);
namespace pvv\side;
use \DateTimeImmutable;
abstract class Event {
private $start;
public function __construct(DateTimeImmutable $start) {
$this->start = $start;
}
public function getStart() {
return $this->start;
}
public abstract function getStop(); /* : DateTimeImmutable */
public abstract function getURL(); /* : string */
}