LogEntry.php 376B

1234567891011121314151617
  1. <?php
  2. namespace Gedmo\Loggable\Document;
  3. use Doctrine\ODM\MongoDB\Mapping\Annotations\Document;
  4. /**
  5. * Gedmo\Loggable\Document\LogEntry
  6. *
  7. * @Document(repositoryClass="Gedmo\Loggable\Document\Repository\LogEntryRepository")
  8. */
  9. class LogEntry extends MappedSuperclass\AbstractLogEntry
  10. {
  11. /**
  12. * All required columns are mapped through inherited superclass
  13. */
  14. }