From 0f1d0dc6c80d703edbf7fb0e62763345d2cd804a Mon Sep 17 00:00:00 2001 From: InfinityXTech <100382372+InfinityXTech@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:16:58 +0200 Subject: [PATCH] [11.x] Fixes missing `ExecutableFinder` import (#52912) * Included ExecutableFinder * Update PhpExecutableFinder.php --------- Co-authored-by: Mior Muhammad Zaki --- src/Illuminate/Support/Process/PhpExecutableFinder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Illuminate/Support/Process/PhpExecutableFinder.php b/src/Illuminate/Support/Process/PhpExecutableFinder.php index 6b9698f85bf1..e1b4cff04697 100644 --- a/src/Illuminate/Support/Process/PhpExecutableFinder.php +++ b/src/Illuminate/Support/Process/PhpExecutableFinder.php @@ -2,6 +2,7 @@ namespace Illuminate\Support\Process; +use Symfony\Component\Process\ExecutableFinder; use Symfony\Component\Process\PhpExecutableFinder as SymfonyPhpExecutableFinder; class PhpExecutableFinder extends SymfonyPhpExecutableFinder