diff options
| author | winter | 2025-01-15 20:33:38 +0000 |
|---|---|---|
| committer | winter | 2025-01-15 20:33:38 +0000 |
| commit | 75b3778dccccddb5cc90b2b4e0a3f958826ad8ba (patch) | |
| tree | 6240a96338f58b5f175e97132a4ce5d804e3b2da /Digitigrade/TimelineItem.php | |
| parent | 07df9da970ceaa54c734d73bdb148fa36d42db63 (diff) | |
implement home timeline
Diffstat (limited to 'Digitigrade/TimelineItem.php')
| -rw-r--r-- | Digitigrade/TimelineItem.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Digitigrade/TimelineItem.php b/Digitigrade/TimelineItem.php deleted file mode 100644 index e59fbec..0000000 --- a/Digitigrade/TimelineItem.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php -namespace Digitigrade; - -class TimelineItem { - private ?TimelineInclusionReason $reason; - private TimelineIncludeable $object; - - public function __construct(TimelineIncludeable $object, ?TimelineInclusionReason $reason = null) { - $this->reason = $reason; - $this->object = $object; - } - - public function getReason(): ?TimelineInclusionReason { - return $this->reason; - } - - public function getObject(): TimelineIncludeable { - return $this->object; - } -}
\ No newline at end of file |
