From 64ac1605b6fe8e997134dd57cc30f30b99ebc076 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Wed, 29 Jan 2020 02:34:50 +0100 Subject: refactor : item abstract class new Item abstract class with hydrate and dry functions to clean others --- app/class/Quickcss.php | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'app/class/Quickcss.php') diff --git a/app/class/Quickcss.php b/app/class/Quickcss.php index 0173763..b55a57b 100644 --- a/app/class/Quickcss.php +++ b/app/class/Quickcss.php @@ -2,7 +2,7 @@ namespace Wcms; -class Quickcss +class Quickcss extends Item { @@ -41,17 +41,7 @@ class Quickcss public function __construct($data) { - $this->hydrate($data); } - - public function hydrate($data) - { - foreach ($data as $key => $value) { - $method = 'set' . $key; - - if (method_exists($this, $method)) { - $this->$method($value); - } - } + $this->hydrate($data); } public function calc() -- cgit v1.2.3