You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
399B

  1. <?php
  2. namespace Lc\SovBundle\Doctrine\Extension;
  3. use Lc\SovBundle\Model\User\UserInterface;
  4. interface BlameableInterface
  5. {
  6. public function getCreatedBy(): ?UserInterface;
  7. public function setCreatedBy(?UserInterface $createdBy): BlameableInterface;
  8. public function getUpdatedBy(): ?UserInterface;
  9. public function setUpdatedBy(?UserInterface $updatedBy): BlameableInterface;
  10. }