From f6d0c69350926bcbd19b541659d7dde49bba4836 Mon Sep 17 00:00:00 2001 From: Gareth Lawson Date: Sun, 16 Jul 2017 16:44:11 +0200 Subject: [PATCH] Make method to get the scan file storage path publicly accessible. --- app/Services/ScanIdentificationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/ScanIdentificationService.php b/app/Services/ScanIdentificationService.php index 50e6a2a..3eb1d03 100644 --- a/app/Services/ScanIdentificationService.php +++ b/app/Services/ScanIdentificationService.php @@ -198,7 +198,7 @@ public function getProvisionalStoragePath(int $workspaceId): string * * @return string */ - protected function getScanFileStorageBasePath(): string + public function getScanFileStorageBasePath(): string { return storage_path('scans') . DIRECTORY_SEPARATOR; }