diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/namespace/Attribute.php | 2 | ||||
-rw-r--r-- | core/namespace/AttributeInterface.php | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/core/namespace/Attribute.php b/core/namespace/Attribute.php index 505a4cd..ba782ac 100644 --- a/core/namespace/Attribute.php +++ b/core/namespace/Attribute.php @@ -1,5 +1,5 @@ <?php -abstract class Attribute implements AttributeInterface { +abstract class Attribute { #=============================================================================== # Set attribute diff --git a/core/namespace/AttributeInterface.php b/core/namespace/AttributeInterface.php deleted file mode 100644 index 7a7c38c..0000000 --- a/core/namespace/AttributeInterface.php +++ /dev/null @@ -1,6 +0,0 @@ -<?php -interface AttributeInterface { - public function databaseINSERT(\Database $Database); - public function databaseUPDATE(\Database $Database); - public function databaseDELETE(\Database $Database); -} |