1234567891011121314151617 |
- <?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
- {}
|