/opt/alt/php54/usr/share/pear/Symfony/Bridge/Twig/Node
NameSizeModeActions
FormEnctypeNode.php8840644editdlrm
FormThemeNode.php10860644editdlrm
RenderBlockNode.php12080644editdlrm
SearchAndRenderBlockNode.php44960644editdlrm
StopwatchNode.php13350644editdlrm
TransDefaultDomainNode.php8330644editdlrm
TransNode.php33990644editdlrm
Edit: /opt/alt/php54/usr/share/pear/Symfony/Bridge/Twig/Node/FormEnctypeNode.php (884B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\Twig\Node; /** * @author Bernhard Schussek * * @deprecated Deprecated since version 2.3, to be removed in 3.0. Use * the helper "form_start()" instead. */ class FormEnctypeNode extends SearchAndRenderBlockNode { public function compile(\Twig_Compiler $compiler) { parent::compile($compiler); // Uncomment this as soon as the deprecation note should be shown // $compiler->write('trigger_error(\'The helper form_enctype(form) is deprecated since version 2.3 and will be removed in 3.0. Use form_start(form) instead.\', E_USER_DEPRECATED)'); } }