<?php
namespace Roothirsch\ShopBundle\Entity\Estimate;
use Doctrine\ORM\Mapping as ORM;
use Roothirsch\CoreBundle\Behaviors\Attributable\Attribute\AttributeAwareTrait;
use Roothirsch\CoreBundle\Behaviors\Attributable\MappedSuperclass\AbstractAttributeOption;
use Roothirsch\ShopBundle\Entity\Estimate\EstimateAttribute;
use Roothirsch\ShopBundle\Repository\AttributeOptionRepository;
use Roothirsch\ShopBundle\Entity\Estimate;
/**
* @ORM\Entity(repositoryClass=AttributeOptionRepository::class)
* @ORM\Table(name="shop_estimate_attribute_option")
*/
class EstimateAttributeOption extends AbstractAttributeOption
{
use AttributeAwareTrait;
/**
* @ORM\ManyToOne(targetEntity=EstimateAttribute::class, inversedBy="attributeOptions")
* @ORM\JoinColumn(nullable=false)
*/
private $attribute;
}