Skip to content

Commit be317fa

Browse files
committed
Merge branch '2.3' into 2.5
* 2.3: Use PHPUnit ini_set wrapper in tests [Process] Added a test skip check for Windows [Process] Removed unused variable assignment Fixes various phpdoc and coding standards. Fixes Issue #13184 - incremental output getters now return empty strings Updated copyright to 2015 Conflicts: src/Symfony/Bridge/Doctrine/Form/ChoiceList/EntityChoiceList.php src/Symfony/Bridge/Propel1/Form/ChoiceList/ModelChoiceList.php src/Symfony/Bundle/TwigBundle/Command/LintCommand.php src/Symfony/Component/Debug/ExceptionHandler.php src/Symfony/Component/Process/Tests/AbstractProcessTest.php
2 parents 8affd4e + 300ecf4 commit be317fa

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

Extension/Core/ChoiceList/ChoiceList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ protected function fixChoice($choice)
505505
*
506506
* @return array The fixed choices.
507507
*
508-
* @see fixChoice
508+
* @see fixChoice()
509509
*/
510510
protected function fixChoices(array $choices)
511511
{

Extension/Core/ChoiceList/ChoiceListInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function getPreferredViews();
8888
* choice indices as keys on the lowest levels and the choice
8989
* group names in the keys of the higher levels
9090
*
91-
* @see getPreferredValues
91+
* @see getPreferredValues()
9292
*/
9393
public function getRemainingViews();
9494

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2004-2014 Fabien Potencier
1+
Copyright (c) 2004-2015 Fabien Potencier
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

Tests/FormBuilderTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
class FormBuilderTest extends \PHPUnit_Framework_TestCase
1717
{
1818
private $dispatcher;
19-
2019
private $factory;
21-
2220
private $builder;
2321

2422
protected function setUp()
@@ -39,7 +37,7 @@ protected function tearDown()
3937
* Changing the name is not allowed, otherwise the name and property path
4038
* are not synchronized anymore.
4139
*
42-
* @see FormType::buildForm
40+
* @see FormType::buildForm()
4341
*/
4442
public function testNoSetName()
4543
{

0 commit comments

Comments
 (0)