| @@ -72,6 +72,7 @@ | ||
| 72 | 72 | /** | 
| 73 | 73 | * @param LdapObjectSchemaFactory $schemaFactory | 
| 74 | 74 | * @param LdapObjectSchema ...$schemaObjects | 
| 75 | + * @param LdapObjectSchema[] $schemaObjects | |
| 75 | 76 | */ | 
| 76 | 77 | protected function cacheAllLdapSchemaObjects(LdapObjectSchemaFactory $schemaFactory, LdapObjectSchema ...$schemaObjects) | 
| 77 | 78 |      { | 
| @@ -53,7 +53,7 @@ | ||
| 53 | 53 | } | 
| 54 | 54 | |
| 55 | 55 | /** | 
| 56 | - * @return array | |
| 56 | + * @return string[] | |
| 57 | 57 | */ | 
| 58 | 58 | public function getSubscribedEvents() | 
| 59 | 59 |      { | 
| @@ -32,7 +32,7 @@ | ||
| 32 | 32 | |
| 33 | 33 | /** | 
| 34 | 34 | * LdapObjectChoiceList constructor. | 
| 35 | - * @param array|\Traversable $choices | |
| 35 | + * @param LdapObject[] $choices | |
| 36 | 36 | * @param null $labelPath | 
| 37 | 37 | * @param array $preferredChoices | 
| 38 | 38 | * @param null $groupPath | 
| @@ -324,7 +324,7 @@ discard block | ||
| 324 | 324 | } | 
| 325 | 325 | |
| 326 | 326 | /** | 
| 327 | - * @param $username | |
| 327 | + * @param string|null $username | |
| 328 | 328 | * @return string | 
| 329 | 329 | */ | 
| 330 | 330 | protected function getConnectionUsername($username) | 
| @@ -344,8 +344,8 @@ discard block | ||
| 344 | 344 | } | 
| 345 | 345 | |
| 346 | 346 | /** | 
| 347 | - * @param $username | |
| 348 | - * @param $password | |
| 347 | + * @param string $username | |
| 348 | + * @param string|null $password | |
| 349 | 349 | * @return string | 
| 350 | 350 | */ | 
| 351 | 351 | protected function getConnectionPassword($username, $password) | 
| @@ -547,7 +547,7 @@ discard block | ||
| 547 | 547 | } | 
| 548 | 548 | |
| 549 | 549 | /** | 
| 550 | - * @param $message | |
| 550 | + * @param string $message | |
| 551 | 551 | */ | 
| 552 | 552 | protected function writeln($message) | 
| 553 | 553 |      { | 
| @@ -14,7 +14,6 @@ | ||
| 14 | 14 | use Symfony\Component\DependencyInjection\Reference; | 
| 15 | 15 | use Symfony\Component\DependencyInjection\DefinitionDecorator; | 
| 16 | 16 | use Symfony\Bundle\SecurityBundle\DependencyInjection\Security\Factory\FormLoginFactory; | 
| 17 | -use Symfony\Component\HttpKernel\Kernel; | |
| 18 | 17 | |
| 19 | 18 | /** | 
| 20 | 19 | * The LDAP form login factory. |