blob: 6ffe76d75abd2762823ca817a024b612e49245dc (
plain)
1
2
3
4
5
6
7
8
|
<?php
namespace Digitigrade\Timeline;
abstract class TimelineInclusionReason {
abstract public function renderAsHtml();
abstract public function toJsonReference(): mixed;
abstract public static function fromJsonReference(mixed $reference): self;
}
|