Comment.php 326 B

123456789101112131415
  1. <?php
  2. namespace Loggable\Fixture\Entity\Log;
  3. use Gedmo\Loggable\Entity\MappedSuperclass\AbstractLogEntry;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Table(name="test_comment_log_entries")
  7. * @ORM\Entity(repositoryClass="Gedmo\Loggable\Entity\Repository\LogEntryRepository")
  8. */
  9. class Comment extends AbstractLogEntry
  10. {
  11. }