Removed useless 'parent' attribute.

This commit is contained in:
Franck Allimant
2014-01-21 12:31:20 +01:00
parent 8bc1f67a51
commit 2effb52f2b

View File

@@ -33,8 +33,6 @@ class ProductUpdateEvent extends ProductCreateEvent
protected $description;
protected $postscriptum;
protected $parent;
public function __construct($product_id)
{
$this->product_id = $product_id;
@@ -87,16 +85,4 @@ class ProductUpdateEvent extends ProductCreateEvent
return $this;
}
public function getParent()
{
return $this->parent;
}
public function setParent($parent)
{
$this->parent = $parent;
return $this;
}
}