ReferenceOne.php 393 B

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