Test.php in Translation template extractor 7.3
File
vendor/Twig/Test.php
View source
<?php
@trigger_error('The Twig_Test class is deprecated since version 1.12 and will be removed in 2.0. Use Twig_SimpleTest instead.', E_USER_DEPRECATED);
abstract class Twig_Test implements Twig_TestInterface, Twig_TestCallableInterface {
protected $options;
protected $arguments = array();
public function __construct(array $options = array()) {
$this->options = array_merge(array(
'callable' => null,
), $options);
}
public function getCallable() {
return $this->options['callable'];
}
}
Classes
Name |
Description |
Twig_Test Deprecated |
Represents a template test. |