Skip to content

Commit 309ac41

Browse files
[Form] minor cs fix
1 parent d041490 commit 309ac41

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)