public function BinaryFileResponseTest::getSampleXAccelMappings in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php \Symfony\Component\HttpFoundation\Tests\BinaryFileResponseTest::getSampleXAccelMappings()
File
- vendor/
symfony/ http-foundation/ Tests/ BinaryFileResponseTest.php, line 230
Class
Namespace
Symfony\Component\HttpFoundation\TestsCode
public function getSampleXAccelMappings() {
return array(
array(
'/var/www/var/www/files/foo.txt',
'/var/www/=/files/',
'/files/var/www/files/foo.txt',
),
array(
'/home/foo/bar.txt',
'/var/www/=/files/,/home/foo/=/baz/',
'/baz/bar.txt',
),
);
}