ReferenceOne.php 437 B

123456789101112131415161718
  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. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  10. * @Annotation
  11. */
  12. class ReferenceOne extends Reference
  13. {
  14. }