From 2effb52f2bdbd8ce0a0256e8628524a7c66c6051 Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Tue, 21 Jan 2014 12:31:20 +0100 Subject: [PATCH] Removed useless 'parent' attribute. --- .../Core/Event/Product/ProductUpdateEvent.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/core/lib/Thelia/Core/Event/Product/ProductUpdateEvent.php b/core/lib/Thelia/Core/Event/Product/ProductUpdateEvent.php index 7d0f9469c..228633d87 100644 --- a/core/lib/Thelia/Core/Event/Product/ProductUpdateEvent.php +++ b/core/lib/Thelia/Core/Event/Product/ProductUpdateEvent.php @@ -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; - } }