1234567891011121314151617 |
- <?php
- namespace Loggable\Fixture\Document\Log;
- use Gedmo\Loggable\Document\MappedSuperclass\AbstractLogEntry;
- use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
- /**
- * @ODM\Document(
- * collection="test_comment_log_entries",
- * repositoryClass="Gedmo\Loggable\Document\Repository\LogEntryRepository"
- * )
- */
- class Comment extends AbstractLogEntry
- {
- }
|