mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
13 lines
246 B
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;
|
|
}
|