diff -u b/core/modules/user/src/Controller/UserController.php b/core/modules/user/src/Controller/UserController.php --- b/core/modules/user/src/Controller/UserController.php +++ b/core/modules/user/src/Controller/UserController.php @@ -50,9 +50,9 @@ protected $logger; /** - * A flood service instance. + * The flood service. * - * @var Drupal\Core\Flood\FloodInterface + * @var \Drupal\Core\Flood\FloodInterface */ protected $flood; @@ -67,8 +67,8 @@ * The user data service. * @param \Psr\Log\LoggerInterface $logger * A logger instance. - * @param Drupal\Core\Flood\FloodInterface $flood - * A logger instance. + * @param \Drupal\Core\Flood\FloodInterface $flood + * The flood service. */ public function __construct(DateFormatterInterface $date_formatter, UserStorageInterface $user_storage, UserDataInterface $user_data, LoggerInterface $logger, FloodInterface $flood) { $this->dateFormatter = $date_formatter;