Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored Nov 19, 2024
1 parent 6c9c5db commit f916c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/public/SetupCheck/CheckServerResponseTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function getRequestOptions(bool $ignoreSSL, bool $httpErrors): array {
*/
private function normalizeUrl(string $url, bool $removeWebroot): string {
if (!filter_var($url, FILTER_VALIDATE_URL)) {
throw new \InvalidArgumentException('URL ($url) is invalid - Please verify syntax of all URLs / domains / IP addresses in your config');
throw new \InvalidArgumentException('URL ($url) is invalid - Please verify syntax of all URLs / domains / IP addresses in your config');
}
if ($removeWebroot) {
$segments = parse_url($url);
Expand Down

0 comments on commit f916c50

Please sign in to comment.