[TwigBridge] Removed unused class property

This commit is contained in:
Grégoire Pineau 2017-01-12 18:49:13 +01:00
parent 77f820ee7c
commit 108c89d1cf
3 changed files with 1 additions and 5 deletions

View File

@ -41,7 +41,7 @@ CHANGELOG
$twig->addExtension(new FormExtension());
```
* Deprecated the `TwigRendererEngineInterface` interface.
* added WorkflownExtension (provides `workflow_can` and `workflow_transitions`)
* added WorkflowExtension (provides `workflow_can` and `workflow_transitions`)
2.7.0
-----

View File

@ -16,8 +16,6 @@ use Symfony\Component\HttpKernel\Debug\FileLinkFormatter;
class CodeExtensionTest extends \PHPUnit_Framework_TestCase
{
protected $helper;
public function testFormatFile()
{
$expected = sprintf('<a href="proto://foobar%s#&amp;line=25" title="Click to open this file" class="file_link">%s at line 25</a>', substr(__FILE__, 5), __FILE__);

View File

@ -15,8 +15,6 @@ use Symfony\Bridge\Twig\Extension\ExpressionExtension;
class ExpressionExtensionTest extends \PHPUnit_Framework_TestCase
{
protected $helper;
public function testExpressionCreation()
{
$template = "{{ expression('1 == 1') }}";