Skip to content

Commit 07e40f8

Browse files
committed
Merge branch '2.3' into 2.5
* 2.3: Updated generateSql tool Fix the implementation of deprecated Locale classes Fix phpdoc and coding standards Replace usages of the deprecated TypeTestCase by the new one Remove usages of deprecated constants Update functional tests to use the PSR NullLogger Make fabbot happy Clean up testing [DomCrawler] fixed bug #12143 Conflicts: src/Symfony/Bridge/Doctrine/Tests/Validator/Constraints/UniqueEntityValidatorTest.php src/Symfony/Bundle/FrameworkBundle/Tests/Templating/TimedPhpEngineTest.php src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php src/Symfony/Component/Console/Application.php src/Symfony/Component/DomCrawler/Crawler.php src/Symfony/Component/Form/Tests/Extension/Core/Type/CollectionTypeTest.php src/Symfony/Component/Form/Tests/Extension/Csrf/Type/FormTypeCsrfExtensionTest.php src/Symfony/Component/HttpKernel/Tests/Bundle/BundleTest.php src/Symfony/Component/Serializer/Encoder/EncoderInterface.php src/Symfony/Component/Serializer/Encoder/XmlEncoder.php src/Symfony/Component/Validator/Tests/Mapping/ClassMetadataFactoryTest.php
2 parents b195a3a + 2ef8f9e commit 07e40f8

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Tests/DependencyInjection/Compiler/TwigLoaderPassTest.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,24 @@
1111

1212
namespace Symfony\Bundle\TwigBundle\Tests\DependencyInjection\Compiler;
1313

14-
use Symfony\Component\DependencyInjection\ContainerBuilder;
1514
use Symfony\Component\DependencyInjection\Definition;
1615
use Symfony\Bundle\TwigBundle\DependencyInjection\Compiler\TwigLoaderPass;
1716

1817
class TwigLoaderPassTest extends \PHPUnit_Framework_TestCase
1918
{
19+
/**
20+
* @var \PHPUnit_Framework_MockObject_MockObject
21+
*/
22+
private $builder;
23+
/**
24+
* @var Definition
25+
*/
26+
private $chainLoader;
27+
/**
28+
* @var TwigLoaderPass
29+
*/
30+
private $pass;
31+
2032
public function setUp()
2133
{
2234
$this->builder = $this->getMock(

0 commit comments

Comments
 (0)