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