chill-bundles/src/Bundle/ChillMainBundle/Doctrine/Model/TrackCreationInterface.php

13 lines
246 B
PHP

<?php
namespace Chill\MainBundle\Doctrine\Model;
use Chill\MainBundle\Entity\User;
interface TrackCreationInterface
{
public function setCreatedBy(User $user): self;
public function setCreatedAt(\DateTimeInterface $datetime): self;
}