Skip to content

Commit 04b0c62

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: [VarExporter] Suppress deprecations for legacy fixtures Bump Symfony version to 5.3.8 Update VERSION for 5.3.7 Update CHANGELOG for 5.3.7 Bump Symfony version to 4.4.31 Update VERSION for 4.4.30 Update CONTRIBUTORS for 4.4.30 Update CHANGELOG for 4.4.30 [Form] minor cs fix [DependencyInjection] Autoconfigurable attributes on methods, properties and parameters
2 parents 47498d1 + 309ac41 commit 04b0c62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Tests/ChoiceList/AbstractChoiceListTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
namespace Symfony\Component\Form\Tests\ChoiceList;
1313

1414
use PHPUnit\Framework\TestCase;
15+
use Symfony\Component\Form\ChoiceList\ChoiceListInterface;
1516

1617
/**
1718
* @author Bernhard Schussek <[email protected]>
1819
*/
1920
abstract class AbstractChoiceListTest extends TestCase
2021
{
2122
/**
22-
* @var \Symfony\Component\Form\ChoiceList\ChoiceListInterface
23+
* @var ChoiceListInterface
2324
*/
2425
protected $list;
2526

@@ -218,7 +219,7 @@ public function testGetChoicesForValuesWithNull()
218219
$this->assertNotEmpty($this->list->getChoicesForValues($values));
219220
}
220221

221-
abstract protected function createChoiceList(): \Symfony\Component\Form\ChoiceList\ChoiceListInterface;
222+
abstract protected function createChoiceList(): ChoiceListInterface;
222223

223224
abstract protected function getChoices();
224225

0 commit comments

Comments
 (0)