From d4ee503ec774c54dfd06bf2eb49794c544fbe1b9 Mon Sep 17 00:00:00 2001 From: mattstauffer Date: Fri, 11 Aug 2023 13:04:11 +0000 Subject: [PATCH] Fix code styling --- cli/Valet/DnsMasq.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/Valet/DnsMasq.php b/cli/Valet/DnsMasq.php index ef3dc04..1932d6c 100644 --- a/cli/Valet/DnsMasq.php +++ b/cli/Valet/DnsMasq.php @@ -46,9 +46,9 @@ public function uninstall(): void // As Laravel Herd uses the same DnsMasq resolver, we should only // delete it if Herd is not installed. - if (!$this->files->exists('/Applications/Herd.app')) { + if (! $this->files->exists('/Applications/Herd.app')) { $tld = $this->configuration->read()['tld']; - $this->files->unlink($this->resolverPath . '/' . $tld); + $this->files->unlink($this->resolverPath.'/'.$tld); } }