1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00

Fix code styling

This commit is contained in:
mattstauffer
2023-08-11 13:04:11 +00:00
committed by github-actions[bot]
parent 109c9d42ae
commit d4ee503ec7

View File

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