sterntours/vendor/gedmo/doctrine-extensions/lib/Gedmo/Mapping/Annotation/Loggable.php
2020-07-09 12:49:32 +02:00

20 lines
433 B
PHP

<?php
namespace Gedmo\Mapping\Annotation;
use Doctrine\Common\Annotations\Annotation;
/**
* Loggable annotation for Loggable behavioral extension
*
* @Annotation
* @Target("CLASS")
*
* @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
final class Loggable extends Annotation
{
/** @var string */
public $logEntryClass;
}