| 1234567891011121314151617181920 | <?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>
 * @package Gedmo.Mapping.Annotation
 * @subpackage ReferenceIntegrity
 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
final class ReferenceIntegrity extends Annotation
{}
 |