diff --git a/cli/Valet/Site.php b/cli/Valet/Site.php index cc9f0a4..52bd8f2 100644 --- a/cli/Valet/Site.php +++ b/cli/Valet/Site.php @@ -80,7 +80,7 @@ function links() { * @param string $path * @return \Illuminate\Support\Collection */ - function getCertificates(string $path) + function getCertificates($path) { return collect($this->files->scanDir($path))->filter(function ($value, $key) { return ends_with($value, '.crt'); @@ -96,7 +96,7 @@ function getCertificates(string $path) * @param \Illuminate\Support\Collection $certs * @return \Illuminate\Support\Collection */ - function getLinks(string $path, \Illuminate\Support\Collection $certs) + function getLinks($path, $certs) { $config = $this->config->read();