Edit File: InvalidProxyAddressException.php
<?php declare(strict_types=1); namespace Laminas\Diactoros\Exception; use function get_debug_type; use function sprintf; class InvalidProxyAddressException extends RuntimeException implements ExceptionInterface { public static function forInvalidProxyArgument(mixed $proxy): self { $type = get_debug_type($proxy); return new self(sprintf( 'Invalid proxy of type "%s" provided;' . ' must be a valid IPv4 or IPv6 address, optionally with a subnet mask provided' . ' or an array of such values', $type, )); } public static function forAddress(string $address): self { return new self(sprintf( 'Invalid proxy address "%s" provided;' . ' must be a valid IPv4 or IPv6 address, optionally with a subnet mask provided', $address, )); } }
Back to File Manager