aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/EntityInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/ORM/EntityInterface.php')
-rw-r--r--core/namespace/ORM/EntityInterface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/ORM/EntityInterface.php b/core/namespace/ORM/EntityInterface.php
index 68c9588..db503e7 100644
--- a/core/namespace/ORM/EntityInterface.php
+++ b/core/namespace/ORM/EntityInterface.php
@@ -3,7 +3,7 @@ namespace ORM;
interface EntityInterface {
public function get(string $attribute);
- public function set(string $attribute, $value);
+ public function set(string $attribute, $value): void;
public function getID(): int;
public function getAll(array $exclude = []): array;