Comment.php 365 B

1234567891011121314151617
  1. <?php
  2. namespace Loggable\Fixture\Document\Log;
  3. use Gedmo\Loggable\Document\MappedSuperclass\AbstractLogEntry;
  4. use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
  5. /**
  6. * @ODM\Document(
  7. * collection="test_comment_log_entries",
  8. * repositoryClass="Gedmo\Loggable\Document\Repository\LogEntryRepository"
  9. * )
  10. */
  11. class Comment extends AbstractLogEntry
  12. {
  13. }