From defe4e2f936012384b981af1a264ba9a09eb2d5c Mon Sep 17 00:00:00 2001 From: Paolo Date: Thu, 4 May 2023 15:33:08 +0200 Subject: [PATCH] Added new interface application/core/IEncryption.php --- application/core/IEncryption.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 application/core/IEncryption.php diff --git a/application/core/IEncryption.php b/application/core/IEncryption.php new file mode 100644 index 000000000..6b9132c23 --- /dev/null +++ b/application/core/IEncryption.php @@ -0,0 +1,24 @@ +. + */ + +interface IEncryption +{ + public function getEncryptedColumns(): array; +} +