12345678910111213141516171819202122232425 |
- <?php
- namespace Gedmo\Mapping\Annotation;
- use Doctrine\Common\Annotations\Annotation;
- /**
- * Blameable annotation for Blameable behavioral extension
- *
- * @Annotation
- * @Target("PROPERTY")
- *
- * @author David Buchmann <mail@davidbu.ch>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- final class Blameable extends Annotation
- {
- /** @var string */
- public $on = 'update';
- /** @var string|array */
- public $field;
- /** @var mixed */
- public $value;
- }
|