From 3b6c756da4561846c42624cac1c253aa3e34a684 Mon Sep 17 00:00:00 2001 From: divinity76 Date: Tue, 19 Mar 2024 18:06:58 +0100 Subject: [PATCH] fsck --- src/AutoDiscover.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/AutoDiscover.php b/src/AutoDiscover.php index 8bf1e43..79724cb 100644 --- a/src/AutoDiscover.php +++ b/src/AutoDiscover.php @@ -53,10 +53,9 @@ public function guessChromeBinaryPath(): string return $file; } } - - return 'chrome'; // ... very unlikely to actually work, but this retains the original behavior.. - // throw new \RuntimeException('Could not find chrome binary'); // this makes more sense tbh } + return 'chrome'; // ... very unlikely to actually work, but this retains the original behavior.. + // throw new \RuntimeException('Could not find chrome binary'); // this makes more sense tbh } }