aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/library/template/Twig/TestCallableInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/system/library/template/Twig/TestCallableInterface.php')
-rw-r--r--public/system/library/template/Twig/TestCallableInterface.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/public/system/library/template/Twig/TestCallableInterface.php b/public/system/library/template/Twig/TestCallableInterface.php
new file mode 100644
index 0000000..98d3457
--- /dev/null
+++ b/public/system/library/template/Twig/TestCallableInterface.php
@@ -0,0 +1,22 @@
+<?php
+
+/*
+ * This file is part of Twig.
+ *
+ * (c) 2012 Fabien Potencier
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+/**
+ * Represents a callable template test.
+ *
+ * @author Fabien Potencier <fabien@symfony.com>
+ *
+ * @deprecated since 1.12 (to be removed in 2.0)
+ */
+interface Twig_TestCallableInterface
+{
+ public function getCallable();
+}