Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstauffer authored and github-actions[bot] committed Aug 11, 2023
1 parent 109c9d4 commit d4ee503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/Valet/DnsMasq.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit d4ee503

Please sign in to comment.