public function Twig_Tests_Loader_FilesystemTest::getArrayInheritanceTests in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/Loader/FilesystemTest.php \Twig_Tests_Loader_FilesystemTest::getArrayInheritanceTests()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Loader/ FilesystemTest.php, line 150
Class
Code
public function getArrayInheritanceTests() {
return array(
'valid array inheritance' => array(
'array_inheritance_valid_parent.html.twig',
),
'array inheritance with null first template' => array(
'array_inheritance_null_parent.html.twig',
),
'array inheritance with empty first template' => array(
'array_inheritance_empty_parent.html.twig',
),
'array inheritance with non-existent first template' => array(
'array_inheritance_nonexistent_parent.html.twig',
),
);
}