public function RequestTest::getLongHostNames in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/RequestTest.php \Symfony\Component\HttpFoundation\Tests\RequestTest::getLongHostNames()
File
- vendor/
symfony/ http-foundation/ Tests/ RequestTest.php, line 1867
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function getLongHostNames() {
return array(
array(
'a' . str_repeat('.a', 40000),
),
array(
str_repeat(':', 101),
),
);
}