FaZeBookSocialNetwork / www / src / FaZeBook / Data / Activity.php
Activity.php
Raw
<?php

namespace FaZeBook\Data;

use DateTimeImmutable;

class Activity extends DataObject
{
    /* ----- Time ----- */

    public function getTime(): DateTimeImmutable {
        return new DateTimeImmutable('@' . $this->dbo->time);
    }

    /* ----- Event ----- */

    public function getEvent(): string {
        return $this->dbo->event;
    }
}