Covivo/mobicoop

View on GitHub
api/src/Incentive/Entity/Journey.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Incentive\Entity;

abstract class Journey
{
    protected $createdAt;

    public function setCreatedAt(\DateTime $date): self
    {
        $this->createdAt = $date;

        return $this;
    }
}