8000 added a missing phpdoc param · lchenay/symfony@bd9319b · GitHub
[go: up one dir, main page]

Skip to content

Commit bd9319b

Browse files
committed
added a missing phpdoc param
1 parent d3625b0 commit bd9319b

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/Symfony/Bridge/Doctrine/Form/ChoiceList/EntityChoiceList.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,15 @@ class EntityChoiceList extends ObjectChoiceList
8686
/**
8787
* Creates a new entity choice list.
8888
*
89-
* @param ObjectManager $manager An EntityManager instance
90-
* @param string $class The class name
91-
* @param string $labelPath The property path used for the label
92-
* @param EntityLoaderInterface $entityLoader An optional query builder
93-
* @param array $entities An array of choices
94-
* @param string $groupPath A property path pointing to the property used
95-
* to group the choices. Only allowed if
96-
* the choices are given as flat array.
89+
* @param ObjectManager $manager An EntityManager instance
90+
* @param string $class The class name
91+
* @param string $labelPath The property path used for the label
92+
* @param EntityLoaderInterface $entityLoader An optional query builder
93+
* @param array $entities An array of choices
94+
* @param array $preferredEntities An array of preferred choices
95+
* @param string $groupPath A property path pointing to the property used
96+
* to group the choices. Only allowed if
97+
* the choices are given as flat array.
9798
*/
9899
public function __construct(ObjectManager $manager, $class, $labelPath = null, EntityLoaderInterface $entityLoader = null, $entities = null, array $preferredEntities = array(), $groupPath = null)
99100
{

0 commit comments

Comments
 (0)
0