17 lines
335 B
PHP
17 lines
335 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Shared\Domain\Contract;
|
|
|
|
interface BlamableInterface
|
|
{
|
|
public function getCreatedBy(): ?UserInterface;
|
|
|
|
public function setCreatedBy(?UserInterface $user): void;
|
|
|
|
public function getUpdatedBy(): ?UserInterface;
|
|
|
|
public function setUpdatedBy(?UserInterface $user): void;
|
|
}
|