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.

AbstractLightEntity.php 781B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Lc\SovBundle\Doctrine\Pattern;
  3. use Lc\SovBundle\Doctrine\EntityInterface;
  4. use Lc\SovBundle\Doctrine\Extension\BlameableInterface;
  5. use Lc\SovBundle\Doctrine\Extension\BlameableTrait;
  6. use Lc\SovBundle\Doctrine\Extension\DevAliasInterface;
  7. use Lc\SovBundle\Doctrine\Extension\DevAliasTrait;
  8. use Lc\SovBundle\Doctrine\Extension\TimestampableInterface;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Gedmo\Mapping\Annotation as Gedmo;
  11. use Lc\SovBundle\Doctrine\Extension\TimestampableTrait;
  12. /**
  13. * @ORM\MappedSuperclass
  14. */
  15. abstract class AbstractLightEntity implements BlameableInterface, TimestampableInterface, DevAliasInterface,
  16. EntityInterface
  17. {
  18. use BlameableTrait;
  19. use DevAliasTrait;
  20. use TimestampableTrait;
  21. }