Skip to content

Commit 75990b9

Browse files
committed
Fix phpstan
1 parent fe75c67 commit 75990b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function host(string ...$hostname): Host|ObjectProxy
7575
$deployer->hosts->set($hostname, $host);
7676
return $host;
7777
}, $aliases);
78-
return new ObjectProxy($hosts); // @phpstan-ignore-line Acts like a host.
78+
return new ObjectProxy($hosts);
7979
}
8080
}
8181

@@ -102,7 +102,7 @@ function localhost(string ...$hostnames): Localhost|ObjectProxy
102102
$deployer->hosts->set($host->getAlias(), $host);
103103
return $host;
104104
}, $hostnames);
105-
return new ObjectProxy($hosts); // @phpstan-ignore-line Acts like a host.
105+
return new ObjectProxy($hosts);
106106
}
107107
}
108108

0 commit comments

Comments
 (0)