public function Twig_Test::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Test.php \Twig_Test::__construct()
3 calls to Twig_Test::__construct()
- Twig_Test_Function::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Function.php - Twig_Test_Method::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Method.php - Twig_Test_Node::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Node.php
3 methods override Twig_Test::__construct()
- Twig_Test_Function::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Function.php - Twig_Test_Method::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Method.php - Twig_Test_Node::__construct in vendor/
twig/ twig/ lib/ Twig/ Test/ Node.php
File
- vendor/
twig/ twig/ lib/ Twig/ Test.php, line 26
Class
- Twig_Test
- Represents a template test.
Code
public function __construct(array $options = array()) {
$this->options = array_merge(array(
'callable' => null,
), $options);
}