From a86bdc6b5bab78b4026f44161413f4e482df42e4 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 25 Jun 2021 22:13:59 +0200 Subject: Reorganize namespaces --- core/namespace/Entity.php | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 core/namespace/Entity.php (limited to 'core/namespace/Entity.php') diff --git a/core/namespace/Entity.php b/core/namespace/Entity.php deleted file mode 100644 index 4bedd37..0000000 --- a/core/namespace/Entity.php +++ /dev/null @@ -1,47 +0,0 @@ -{$attribute} ?? NULL; - } - - #=============================================================================== - # Set attribute - #=============================================================================== - public function set(string $attribute, $value) { - return $this->{$attribute} = $value; - } - - #=============================================================================== - # Return ID - #=============================================================================== - final public function getID(): int { - return $this->id; - } - - #=============================================================================== - # Get all attributes - #=============================================================================== - public function getAll(array $exclude = []): array { - $attributes = get_object_vars($this); - - return array_filter($attributes, function($attribute) use($exclude) { - return !in_array($attribute, $exclude); - }, ARRAY_FILTER_USE_KEY); - } - - #=============================================================================== - # Get array with all non-false attributes - #=============================================================================== - public function getFilteredAttributes(): array { - return array_filter(get_object_vars($this), function($value) { - return $value !== FALSE; - }); - } -} -- cgit v1.2.3