From 161eaadc898c7f6210c2a10beff774bf569f6b79 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 18 Apr 2016 21:46:07 +0200 Subject: [PATCH 1/2] Move OC\IntegrityCheck to PSR-4 --- .../{integritycheck/checker.php => IntegrityCheck/Checker.php} | 0 .../Exceptions/InvalidSignatureException.php} | 0 .../applocator.php => IntegrityCheck/Helpers/AppLocator.php} | 0 .../Helpers/EnvironmentHelper.php} | 0 .../Helpers/FileAccessHelper.php} | 0 .../Iterator/ExcludeFileByNameFilterIterator.php} | 0 .../Iterator/ExcludeFoldersByPathFilterIterator.php} | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename lib/private/{integritycheck/checker.php => IntegrityCheck/Checker.php} (100%) rename lib/private/{integritycheck/exceptions/invalidsignatureexception.php => IntegrityCheck/Exceptions/InvalidSignatureException.php} (100%) rename lib/private/{integritycheck/helpers/applocator.php => IntegrityCheck/Helpers/AppLocator.php} (100%) rename lib/private/{integritycheck/helpers/environmenthelper.php => IntegrityCheck/Helpers/EnvironmentHelper.php} (100%) rename lib/private/{integritycheck/helpers/fileaccesshelper.php => IntegrityCheck/Helpers/FileAccessHelper.php} (100%) rename lib/private/{integritycheck/iterator/excludefilebynamefilteriterator.php => IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php} (100%) rename lib/private/{integritycheck/iterator/excludefoldersbypathfilteriterator.php => IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php} (100%) diff --git a/lib/private/integritycheck/checker.php b/lib/private/IntegrityCheck/Checker.php similarity index 100% rename from lib/private/integritycheck/checker.php rename to lib/private/IntegrityCheck/Checker.php diff --git a/lib/private/integritycheck/exceptions/invalidsignatureexception.php b/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php similarity index 100% rename from lib/private/integritycheck/exceptions/invalidsignatureexception.php rename to lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php diff --git a/lib/private/integritycheck/helpers/applocator.php b/lib/private/IntegrityCheck/Helpers/AppLocator.php similarity index 100% rename from lib/private/integritycheck/helpers/applocator.php rename to lib/private/IntegrityCheck/Helpers/AppLocator.php diff --git a/lib/private/integritycheck/helpers/environmenthelper.php b/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php similarity index 100% rename from lib/private/integritycheck/helpers/environmenthelper.php rename to lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php diff --git a/lib/private/integritycheck/helpers/fileaccesshelper.php b/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php similarity index 100% rename from lib/private/integritycheck/helpers/fileaccesshelper.php rename to lib/private/IntegrityCheck/Helpers/FileAccessHelper.php diff --git a/lib/private/integritycheck/iterator/excludefilebynamefilteriterator.php b/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php similarity index 100% rename from lib/private/integritycheck/iterator/excludefilebynamefilteriterator.php rename to lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php diff --git a/lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php b/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php similarity index 100% rename from lib/private/integritycheck/iterator/excludefoldersbypathfilteriterator.php rename to lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php From c03bd2d8a7b51db1ad6367583f54e1b42a492101 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 18 Apr 2016 22:06:14 +0200 Subject: [PATCH 2/2] Fix use statement --- lib/private/IntegrityCheck/Checker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/IntegrityCheck/Checker.php b/lib/private/IntegrityCheck/Checker.php index d7867936887..c3d6aefb829 100644 --- a/lib/private/IntegrityCheck/Checker.php +++ b/lib/private/IntegrityCheck/Checker.php @@ -25,7 +25,7 @@ use OC\IntegrityCheck\Exceptions\InvalidSignatureException; use OC\IntegrityCheck\Helpers\AppLocator; use OC\IntegrityCheck\Helpers\EnvironmentHelper; use OC\IntegrityCheck\Helpers\FileAccessHelper; -use OC\Integritycheck\Iterator\ExcludeFileByNameFilterIterator; +use OC\IntegrityCheck\Iterator\ExcludeFileByNameFilterIterator; use OC\IntegrityCheck\Iterator\ExcludeFoldersByPathFilterIterator; use OCP\App\IAppManager; use OCP\ICache;