ReferenceMany.php 534B

12345678910111213141516171819202122
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * Reference annotation for ORM -> ODM references extension
  6. * to be user like @ReferenceOne(type="entity", class="MyEntity", identifier="entity_id")
  7. *
  8. * @author Bulat Shakirzyanov <mallluhuct@gmail.com>
  9. * @package Gedmo.Mapping.Annotation
  10. * @subpackage Language
  11. * @link http://www.gediminasm.org
  12. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  13. * @Annotation
  14. */
  15. class ReferenceMany extends Reference
  16. {
  17. }