public function RequestMatcher::matchIp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/RequestMatcher.php \Symfony\Component\HttpFoundation\RequestMatcher::matchIp()
Adds a check for the client IP.
Parameters
string $ip A specific IP address or a range specified using IP/netmask like 192.168.1.0/24:
File
- vendor/
symfony/ http-foundation/ RequestMatcher.php, line 107
Class
- RequestMatcher
- RequestMatcher compares a pre-defined set of checks against a Request instance.
Namespace
Symfony\Component\HttpFoundationCode
public function matchIp($ip) {
$this
->matchIps($ip);
}