Annotations.php 600 B

123456789101112131415161718192021
  1. <?php
  2. namespace Gedmo\Loggable\Mapping;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * Loggable extension annotation which should be used
  6. * on for specific record logging on any Entity
  7. *
  8. * @author Boussekeyt Jules <jules.boussekeyt@gmail.com>
  9. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  10. * @package Gedmo.Loggable.Mapping
  11. * @subpackage Annotations
  12. * @link http://www.gediminasm.org
  13. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  14. */
  15. final class Loggable extends Annotation
  16. {
  17. public $actions = array('create', 'update', 'delete');
  18. }