We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d916d commit 4743c11Copy full SHA for 4743c11
cli/Valet/Site.php
@@ -80,7 +80,7 @@ function links() {
80
* @param string $path
81
* @return \Illuminate\Support\Collection
82
*/
83
- function getCertificates(string $path)
+ function getCertificates($path)
84
{
85
return collect($this->files->scanDir($path))->filter(function ($value, $key) {
86
return ends_with($value, '.crt');
@@ -96,7 +96,7 @@ function getCertificates(string $path)
96
* @param \Illuminate\Support\Collection $certs
97
98
99
- function getLinks(string $path, \Illuminate\Support\Collection $certs)
+ function getLinks($path, $certs)
100
101
$config = $this->config->read();
102
0 commit comments