mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-03 23:46:12 +00:00
13 lines
244 B
PHP
13 lines
244 B
PHP
<?php
|
|
|
|
namespace Chill\MainBundle\Doctrine\Model;
|
|
|
|
use Chill\MainBundle\Entity\User;
|
|
|
|
interface TrackUpdateInterface
|
|
{
|
|
public function setUpdatedBy(User $user): self;
|
|
|
|
public function setUpdatedAt(\DateTimeInterface $datetime): self;
|
|
}
|