Skip to content

Commit ebd3bae

Browse files
committed
Merge branch '2.5'
* 2.5: [Doc] Use Markdown syntax highlighting [Finder] tweaked docs [Finder] Add info about possibilities offered by SplFileInfo fixed CS [Security][Http][Authentication] Make a test pass on HHVM fix components tests [Intl] FIxed failing test [Intl] Generated the data for ICU version 54-rc [EventDispatcher] fix doc bloc on EventDispatcherInterface [Validator] Update validators.zh_CN.xlf, fix translation error bumped Symfony version to 2.5.6 updated VERSION for 2.5.5 updated CHANGELOG for 2.5.5 bumped Symfony version to 2.3.21 updated VERSION for 2.3.20 update CONTRIBUTORS for 2.3.20 updated CHANGELOG for 2.3.20 [Intl] Integrated ICU data into Intl component Conflicts: src/Symfony/Component/Debug/README.md src/Symfony/Component/DependencyInjection/README.md src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/OptionsResolver/README.md
2 parents 0a0a00b + a582aeb commit ebd3bae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Tests/DependencyInjection/Compiler/TwigLoaderPassTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ class TwigLoaderPassTest extends \PHPUnit_Framework_TestCase
1919
{
2020
public function setUp()
2121
{
22-
$this->builder = $this->getMock('Symfony\Component\DependencyInjection\ContainerBuilder');
22+
$this->builder = $this->getMock(
23+
'Symfony\Component\DependencyInjection\ContainerBuilder',
24+
array('hasDefinition', 'findTaggedServiceIds', 'setAlias', 'getDefinition')
25+
);
2326
$this->chainLoader = new Definition('loader');
2427
$this->pass = new TwigLoaderPass();
2528
}

0 commit comments

Comments
 (0)