From fea9b308074fe17ca145acc62bc3eb8b80bebee9 Mon Sep 17 00:00:00 2001 From: Robin Keet Date: Sat, 15 Dec 2018 13:14:50 +0100 Subject: [PATCH] Updated namespace from 'Encrypt' to 'Keet\Encrypt\' to match autoloading config and bring it in line with other modules --- config/local.config.php.dist | 2 +- config/module.config.php | 22 +++++++++---------- src/Adapter/EncryptionAdapter.php | 4 ++-- src/Adapter/HashingAdapter.php | 4 ++-- src/Annotation/Encrypted.php | 2 +- src/Annotation/Hashed.php | 2 +- src/Exception/OptionsNotFoundException.php | 2 +- .../Adapter/EncryptionAdapterFactory.php | 6 ++--- src/Factory/Adapter/HashingAdapterFactory.php | 6 ++--- .../Service/EncryptionServiceFactory.php | 6 ++--- src/Factory/Service/HashingServiceFactory.php | 6 ++--- .../EncryptionSubscriberFactory.php | 8 +++---- .../Subscriber/HashingSubscriberFactory.php | 10 ++++----- src/Interfaces/EncryptionInterface.php | 2 +- src/Interfaces/HashingInterface.php | 2 +- src/Interfaces/SaltInterface.php | 2 +- src/Module.php | 2 +- src/Options/EncryptionOptions.php | 4 ++-- src/Options/HashingOptions.php | 4 ++-- src/Service/EncryptionService.php | 4 ++-- src/Service/HashingService.php | 4 ++-- src/Subscriber/EncryptionSubscriber.php | 6 ++--- src/Subscriber/HashingSubscriber.php | 8 +++---- 23 files changed, 59 insertions(+), 59 deletions(-) diff --git a/config/local.config.php.dist b/config/local.config.php.dist index d5186aa..70971f2 100644 --- a/config/local.config.php.dist +++ b/config/local.config.php.dist @@ -1,6 +1,6 @@ [ diff --git a/config/module.config.php b/config/module.config.php index 16d755a..bcbf94f 100644 --- a/config/module.config.php +++ b/config/module.config.php @@ -1,18 +1,18 @@ [ diff --git a/src/Adapter/EncryptionAdapter.php b/src/Adapter/EncryptionAdapter.php index 218ae38..77db5e0 100644 --- a/src/Adapter/EncryptionAdapter.php +++ b/src/Adapter/EncryptionAdapter.php @@ -1,8 +1,8 @@