diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-11-02 09:19:00 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-11-02 09:19:00 +0100 |
commit | c5ae622c72219a4c3fad3fffc7651f8e4f2982df (patch) | |
tree | 9263c28c320ee7594110048f395ea4d025230d3a /php-symfony-upstream.patch | |
parent | 48fbb495322685a94a34aea08e918512b80277ed (diff) |
php-symfony: upstream patch for twig 1.23
Diffstat (limited to 'php-symfony-upstream.patch')
-rw-r--r-- | php-symfony-upstream.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/php-symfony-upstream.patch b/php-symfony-upstream.patch new file mode 100644 index 0000000..29adb9a --- /dev/null +++ b/php-symfony-upstream.patch @@ -0,0 +1,25 @@ +From 1bdd127938058a1f34fd0bc883ebb9e4d6ccf67d Mon Sep 17 00:00:00 2001 +From: Fabien Potencier <fabien.potencier@gmail.com> +Date: Sat, 24 Oct 2015 22:25:19 +0200 +Subject: [PATCH] fixed Twig deprecation notices + +--- + composer.json | 2 +- + src/Symfony/Bridge/Twig/Extension/FormExtension.php | 2 +- + src/Symfony/Bridge/Twig/composer.json | 2 +- + src/Symfony/Bundle/SecurityBundle/composer.json | 2 +- + 4 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/Symfony/Bridge/Twig/Extension/FormExtension.php b/src/Symfony/Bridge/Twig/Extension/FormExtension.php +index 9c7339f..e972ac4 100644 +--- a/src/Symfony/Bridge/Twig/Extension/FormExtension.php ++++ b/src/Symfony/Bridge/Twig/Extension/FormExtension.php +@@ -21,7 +21,7 @@ + * @author Fabien Potencier <fabien@symfony.com> + * @author Bernhard Schussek <bschussek@gmail.com> + */ +-class FormExtension extends \Twig_Extension ++class FormExtension extends \Twig_Extension implements \Twig_Extension_InitRuntimeInterface + { + /** + * This property is public so that it can be accessed directly from compiled |