SoftDeleteable.php 530B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * Group annotation for SoftDeleteable extension
  6. *
  7. * @author Gustavo Falco <comfortablynumb84@gmail.com>
  8. * @package Gedmo.Mapping.Annotation
  9. * @subpackage SoftDeleteable
  10. * @link http://www.gediminasm.org
  11. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  12. *
  13. * @Annotation
  14. * @Target("CLASS")
  15. */
  16. final class SoftDeleteable extends Annotation
  17. {
  18. /** @var string */
  19. public $fieldName = 'deletedAt';
  20. }