vendor/roothirsch/core-bundle/Entity/Company/CompanyAttributeOption.php line 13

Open in your IDE?
  1. <?php
  2. namespace Roothirsch\CoreBundle\Entity\Company;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Roothirsch\CoreBundle\Behaviors\Attributable\Attribute\AttributeAwareTrait;
  5. use Roothirsch\CoreBundle\Behaviors\Attributable\MappedSuperclass\AbstractAttributeOption;
  6. /**
  7. * @ORM\Entity
  8. */
  9. class CompanyAttributeOption extends AbstractAttributeOption
  10. {
  11. use AttributeAwareTrait;
  12. /**
  13. * @ORM\ManyToOne(targetEntity=CompanyAttribute::class, inversedBy="attributeOptions")
  14. * @ORM\JoinColumn(nullable=false)
  15. */
  16. private $attribute;
  17. }