function DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy
Same name in other branches
- 8.9.x core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()
- 10 core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()
- 11.x core/modules/image/tests/src/Unit/PageCache/DenyPrivateImageStyleDownloadTest.php \Drupal\Tests\image\Unit\PageCache\DenyPrivateImageStyleDownloadTest::providerPrivateImageStyleDownloadPolicy()
Provides data and expected results for the test method.
Return value
array Data and expected results.
File
-
core/
modules/ image/ tests/ src/ Unit/ PageCache/ DenyPrivateImageStyleDownloadTest.php, line 76
Class
- DenyPrivateImageStyleDownloadTest
- @coversDefaultClass \Drupal\image\PageCache\DenyPrivateImageStyleDownload @group image
Namespace
Drupal\Tests\image\Unit\PageCacheCode
public function providerPrivateImageStyleDownloadPolicy() {
return [
[
ResponsePolicyInterface::DENY,
'image.style_private',
],
[
NULL,
'some.other.route',
],
[
NULL,
NULL,
],
[
NULL,
FALSE,
],
[
NULL,
TRUE,
],
[
NULL,
new \StdClass(),
],
[
NULL,
[
1,
2,
3,
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.