Skip to content

Commit 1aaf933

Browse files
committed
fix: order of properties
Signed-off-by: Vitor Mattos <[email protected]>
1 parent 99a174f commit 1aaf933

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

tests/php/Unit/Service/FileServiceTest.php

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,9 @@ private function createFileService(array $overrides = []): FileService {
1818
\OCA\Libresign\Db\FileElementMapper::class,
1919
\OCA\Libresign\Service\FileElementService::class,
2020
\OCA\Libresign\Service\FolderService::class,
21-
\OCA\Libresign\Helper\ValidateHelper::class,
22-
\OCA\Libresign\Service\PdfParserService::class,
2321
\OCA\Libresign\Db\IdDocsMapper::class,
24-
\OCA\Libresign\Service\AccountService::class,
2522
\OCA\Libresign\Service\IdentifyMethodService::class,
26-
\OCP\IUserSession::class,
2723
\OCP\IUserManager::class,
28-
\OCP\Accounts\IAccountManager::class,
29-
\OCP\Http\Client\IClientService::class,
30-
\OCP\IDateTimeFormatter::class,
31-
\OCP\IAppConfig::class,
3224
\OCP\IURLGenerator::class,
3325
\OCP\Files\IMimeTypeDetector::class,
3426
\OCA\Libresign\Handler\SignEngine\Pkcs12Handler::class,
@@ -39,12 +31,16 @@ private function createFileService(array $overrides = []): FileService {
3931
\OCP\IL10N::class,
4032
\OCA\Libresign\Service\EnvelopeService::class,
4133
\OCA\Libresign\Service\File\SignersLoader::class,
42-
\OCA\Libresign\Service\File\FileListService::class,
43-
\OCA\Libresign\Service\File\FileDataAssembler::class,
4434
\OCA\Libresign\Helper\FileUploadHelper::class,
4535
\OCA\Libresign\Service\File\EnvelopeAssembler::class,
4636
\OCA\Libresign\Service\File\EnvelopeProgressService::class,
4737
\OCA\Libresign\Service\File\CertificateChainService::class,
38+
\OCA\Libresign\Service\File\MimeService::class,
39+
\OCA\Libresign\Service\File\FileContentProvider::class,
40+
\OCA\Libresign\Service\File\UploadProcessor::class,
41+
\OCA\Libresign\Service\File\MetadataLoader::class,
42+
\OCA\Libresign\Service\File\SettingsLoader::class,
43+
\OCA\Libresign\Service\File\MessagesLoader::class,
4844
];
4945

5046
$args = array_map(function ($c) use ($overrides) {

0 commit comments

Comments
 (0)