19 lines
409 B
PHP
19 lines
409 B
PHP
<?php
|
|
|
|
namespace Gedmo\Mapping\Annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* ReferenceIntegrity annotation for ReferenceIntegrity behavioral extension
|
|
*
|
|
* @Annotation
|
|
* @Target("PROPERTY")
|
|
*
|
|
* @author Evert Harmeling <evert.harmeling@freshheads.com>
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
final class ReferenceIntegrity extends Annotation
|
|
{
|
|
}
|