public function Twig_Tests_TemplateTest::getGetAttributeWithTemplateAsObject

File

drupal/core/vendor/twig/twig/test/Twig/Tests/TemplateTest.php, line 129

Class

Twig_Tests_TemplateTest

Code

public function getGetAttributeWithTemplateAsObject() {
  $bools = array(
    array(
      false,
    ),
  );
  if (function_exists('twig_template_get_attributes')) {
    $bools[] = array(
      true,
    );
  }
  return $bools;
}