aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-08-10 20:00:41 +0200
committerThomas Lange <code@nerdmind.de>2021-08-10 20:01:06 +0200
commit7c86a4ec9f44579947589828081b78fe5bf437c8 (patch)
tree8880df630897d25485e1801be8317b99dcd8568d
parenta3215d365292588fc2b1e71f226cda036d0aef76 (diff)
downloadblog-7c86a4ec9f44579947589828081b78fe5bf437c8.tar.gz
blog-7c86a4ec9f44579947589828081b78fe5bf437c8.tar.xz
blog-7c86a4ec9f44579947589828081b78fe5bf437c8.zip
Add "getModifiedKeys" method to EntityInterface
-rw-r--r--core/namespace/ORM/EntityInterface.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/namespace/ORM/EntityInterface.php b/core/namespace/ORM/EntityInterface.php
index db503e7..7c6a9d9 100644
--- a/core/namespace/ORM/EntityInterface.php
+++ b/core/namespace/ORM/EntityInterface.php
@@ -7,4 +7,5 @@ interface EntityInterface {
public function getID(): int;
public function getAll(array $exclude = []): array;
+ public function getModifiedKeys(): array;
}