partkeepr

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

VirtualField.php (253B)


      1 <?php
      2 
      3 namespace PartKeepr\DoctrineReflectionBundle\Annotation;
      4 
      5 use Doctrine\ORM\Mapping\Annotation;
      6 
      7 /**
      8  * @Annotation
      9  * @Target("PROPERTY")
     10  */
     11 final class VirtualField implements Annotation
     12 {
     13     /**
     14      * @var string
     15      */
     16     public $type;
     17 }