ByReference.php (277B)
1 <?php 2 3 namespace PartKeepr\DoctrineReflectionBundle\Annotation; 4 5 use Doctrine\ORM\Mapping\Annotation; 6 7 /** 8 * Tells the system to pass the association by reference and not by value. 9 * 10 * @Annotation 11 * @Target("PROPERTY") 12 */ 13 final class ByReference implements Annotation 14 { 15 }