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); } }