<?php
namespace Roothirsch\CoreBundle\Entity\Company;
use Doctrine\ORM\Mapping as ORM;
use Roothirsch\CoreBundle\Behaviors\Attributable\Attribute\AttributeAwareTrait;
use Roothirsch\CoreBundle\Behaviors\Attributable\MappedSuperclass\AbstractAttributeOption;
/**
* @ORM\Entity
*/
class CompanyAttributeOption extends AbstractAttributeOption
{
use AttributeAwareTrait;
/**
* @ORM\ManyToOne(targetEntity=CompanyAttribute::class, inversedBy="attributeOptions")
* @ORM\JoinColumn(nullable=false)
*/
private $attribute;
}