From 02c23d4ed2220ce3e538c71cd796a65fab286507 Mon Sep 17 00:00:00 2001 From: Alfred Nutile Date: Mon, 25 Mar 2024 08:57:37 -0400 Subject: [PATCH] remove port call --- tests/Feature/SharedSetupForPdfFile.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Feature/SharedSetupForPdfFile.php b/tests/Feature/SharedSetupForPdfFile.php index 3e8dfc88..c3311be7 100644 --- a/tests/Feature/SharedSetupForPdfFile.php +++ b/tests/Feature/SharedSetupForPdfFile.php @@ -3,7 +3,6 @@ namespace Tests\Feature; use App\Models\Document; -use App\Models\Source; use Illuminate\Support\Facades\File; trait SharedSetupForPdfFile @@ -19,7 +18,7 @@ protected function webFileDownloadSetup() $from = base_path('tests/fixtures/example.pdf'); if (! File::exists($document->pathToFile())) { - if(!File::exists($document->mkdirPathToFile())) { + if (! File::exists($document->mkdirPathToFile())) { File::makeDirectory( $document->mkdirPathToFile(), 0755,