partkeepr

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

AssociationPropertyInterface.php (274B)


      1 <?php
      2 
      3 namespace PartKeepr\DoctrineReflectionBundle\Filter;
      4 
      5 interface AssociationPropertyInterface
      6 {
      7     public function getProperty();
      8 
      9     public function setProperty($property);
     10 
     11     public function getAssociation();
     12 
     13     public function setAssociation($association);
     14 }