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/Medialist.php | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'app/class/Medialist.php') diff --git a/app/class/Medialist.php b/app/class/Medialist.php index 2c17fa0..ab1dea3 100644 --- a/app/class/Medialist.php +++ b/app/class/Medialist.php @@ -2,7 +2,7 @@ namespace Wcms; -class Medialist +class Medialist extends Item { /** @var string full regex match */ protected $fullmatch; @@ -46,17 +46,6 @@ class Medialist $this->hydrate($datas); } - public function hydrate($datas) - { - foreach ($datas as $key => $value) { - $method = 'set' . $key; - - if (method_exists($this, $method)) { - $this->$method($value); - } - } - } - public function readfilter() { parse_str($this->filter, $datas); -- cgit v1.2.3