Skip to content

Commit 4743c11

Browse files
committed
Obliterate filthy typehints
1 parent 79d916d commit 4743c11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/Valet/Site.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function links() {
8080
* @param string $path
8181
* @return \Illuminate\Support\Collection
8282
*/
83-
function getCertificates(string $path)
83+
function getCertificates($path)
8484
{
8585
return collect($this->files->scanDir($path))->filter(function ($value, $key) {
8686
return ends_with($value, '.crt');
@@ -96,7 +96,7 @@ function getCertificates(string $path)
9696
* @param \Illuminate\Support\Collection $certs
9797
* @return \Illuminate\Support\Collection
9898
*/
99-
function getLinks(string $path, \Illuminate\Support\Collection $certs)
99+
function getLinks($path, $certs)
100100
{
101101
$config = $this->config->read();
102102

0 commit comments

Comments
 (0)