public function Twig_TemplatePropertyObjectAndArrayAccess::offsetGet in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/TemplateTest.php \Twig_TemplatePropertyObjectAndArrayAccess::offsetGet()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ TemplateTest.php, line 570
Class
Code
public function offsetGet($offset) {
return $this
->offsetExists($offset) ? $this->data[$offset] : 'n/a';
}