DevRequireLink.php 689 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of Packagist.
  4. *
  5. * (c) Jordi Boggiano <j.boggiano@seld.be>
  6. * Nils Adermann <naderman@naderman.de>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Packagist\WebBundle\Entity;
  12. use Doctrine\ORM\Mapping as ORM;
  13. use Symfony\Component\Validator\Constraints as Assert;
  14. /**
  15. * @ORM\Entity
  16. * @ORM\Table(name="link_require_dev")
  17. * @author Jordi Boggiano <j.boggiano@seld.be>
  18. */
  19. class DevRequireLink extends PackageLink
  20. {
  21. /**
  22. * @ORM\ManyToOne(targetEntity="Packagist\WebBundle\Entity\Version", inversedBy="devRequire")
  23. */
  24. protected $version;
  25. }