/**
* @var ArrayCollection<\Shopware\Models\Article\Article>
*
* @ORM\OneToMany(targetEntity="Shopware\Models\Article\Article", mappedBy="propertyGroup", fetch="EXTRA_LAZY")
* @ORM\JoinColumn(name="id", referencedColumnName="filtergroupID")
*/
private $articles;
public function __construct()
{
$this->options = new ArrayCollection();
$this->articles = new ArrayCollection();
$this->relations = new ArrayCollection();
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}