partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

VirtualOneToMany.php (377B)


      1 <?php
      2 
      3 namespace PartKeepr\DoctrineReflectionBundle\Annotation;
      4 
      5 use Doctrine\ORM\Mapping\Annotation;
      6 
      7 /**
      8  * Defines a virtual one to many association, that is, an association which
      9  * is not persisted into the database.
     10  *
     11  * @Annotation
     12  * @Target("PROPERTY")
     13  */
     14 final class VirtualOneToMany implements Annotation
     15 {
     16     /**
     17      * @var string
     18      */
     19     public $target;
     20 }