Skip to content

Commit 16d8fa6

Browse files
committed
Merge branch '3.1' into 3.2
* 3.1: fixed CS
2 parents ebdbd96 + e3dcde7 commit 16d8fa6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/Symfony/Bridge/Doctrine/Tests/DependencyInjection/CompilerPass/RegisterMappingsPassTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class RegisterMappingsPassTest extends \PHPUnit_Framework_TestCase
1515
public function testNoDriverParmeterException()
1616
{
1717
$container = $this->createBuilder(array(
18-
1918
));
2019
$this->process($container, array(
2120
'manager.param.one',

src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ public function testConstructor()
3030
public function testGetUri()
3131
{
3232
$uri = 'http://symfony.com';
33-
$crawler = new Crawler(null, $uri);
33+
$crawler = new Crawler(null, $uri);
3434
$this->assertEquals($uri, $crawler->getUri());
3535
}
3636

3737
public function testGetBaseHref()
3838
{
3939
$baseHref = 'http://symfony.com';
40-
$crawler = new Crawler(null, null, $baseHref);
40+
$crawler = new Crawler(null, null, $baseHref);
4141
$this->assertEquals($baseHref, $crawler->getBaseHref());
4242
}
4343

src/Symfony/Component/Process/Tests/ProcessTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ public function testInputStreamOnEmpty()
12811281
{
12821282
$i = 0;
12831283
$input = new InputStream();
1284-
$input->onEmpty(function () use (&$i) {++$i;});
1284+
$input->onEmpty(function () use (&$i) { ++$i; });
12851285

12861286
$process = $this->getProcess(self::$phpBin.' -r '.escapeshellarg('echo 123; echo fread(STDIN, 1); echo 456;'));
12871287
$process->setInput($input);

0 commit comments

Comments
 (0)