Skip to content
Snippets Groups Projects
Commit a7b67e7a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2721901 by Mile23, anoopjohn: Fix Drupal.Commenting.FunctionComment.MissingParamName

parent 17cd8920
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Showing
with 26 additions and 26 deletions
...@@ -108,7 +108,7 @@ public static function assertAllStringable($traversable) { ...@@ -108,7 +108,7 @@ public static function assertAllStringable($traversable) {
* Use this instead of is_string() alone unless the argument being an object * Use this instead of is_string() alone unless the argument being an object
* in any way will cause a problem. * in any way will cause a problem.
* *
* @param mixed string * @param mixed $string
* Variable to be examined * Variable to be examined
* *
* @return bool * @return bool
......
...@@ -169,7 +169,7 @@ function setComment($comment) { ...@@ -169,7 +169,7 @@ function setComment($comment) {
/** /**
* Create the PoItem from a structured array. * Create the PoItem from a structured array.
* *
* @param array values * @param array $values
*/ */
public function setFromArray(array $values = array()) { public function setFromArray(array $values = array()) {
if (isset($values['context'])) { if (isset($values['context'])) {
......
...@@ -40,13 +40,13 @@ class CssCollectionOptimizer implements AssetCollectionOptimizerInterface { ...@@ -40,13 +40,13 @@ class CssCollectionOptimizer implements AssetCollectionOptimizerInterface {
/** /**
* Constructs a CssCollectionOptimizer. * Constructs a CssCollectionOptimizer.
* *
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface * @param \Drupal\Core\Asset\AssetCollectionGrouperInterface $grouper
* The grouper for CSS assets. * The grouper for CSS assets.
* @param \Drupal\Core\Asset\AssetOptimizerInterface * @param \Drupal\Core\Asset\AssetOptimizerInterface $optimizer
* The optimizer for a single CSS asset. * The optimizer for a single CSS asset.
* @param \Drupal\Core\Asset\AssetDumperInterface * @param \Drupal\Core\Asset\AssetDumperInterface $dumper
* The dumper for optimized CSS assets. * The dumper for optimized CSS assets.
* @param \Drupal\Core\State\StateInterface * @param \Drupal\Core\State\StateInterface $state
* The state key/value store. * The state key/value store.
*/ */
public function __construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state) { public function __construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state) {
......
...@@ -63,7 +63,7 @@ class CssCollectionRenderer implements AssetCollectionRendererInterface { ...@@ -63,7 +63,7 @@ class CssCollectionRenderer implements AssetCollectionRendererInterface {
/** /**
* Constructs a CssCollectionRenderer. * Constructs a CssCollectionRenderer.
* *
* @param \Drupal\Core\State\StateInterface * @param \Drupal\Core\State\StateInterface $state
* The state key/value store. * The state key/value store.
*/ */
public function __construct(StateInterface $state) { public function __construct(StateInterface $state) {
......
...@@ -41,13 +41,13 @@ class JsCollectionOptimizer implements AssetCollectionOptimizerInterface { ...@@ -41,13 +41,13 @@ class JsCollectionOptimizer implements AssetCollectionOptimizerInterface {
/** /**
* Constructs a JsCollectionOptimizer. * Constructs a JsCollectionOptimizer.
* *
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface * @param \Drupal\Core\Asset\AssetCollectionGrouperInterface $grouper
* The grouper for JS assets. * The grouper for JS assets.
* @param \Drupal\Core\Asset\AssetOptimizerInterface * @param \Drupal\Core\Asset\AssetOptimizerInterface $optimizer
* The optimizer for a single JS asset. * The optimizer for a single JS asset.
* @param \Drupal\Core\Asset\AssetDumperInterface * @param \Drupal\Core\Asset\AssetDumperInterface $dumper
* The dumper for optimized JS assets. * The dumper for optimized JS assets.
* @param \Drupal\Core\State\StateInterface * @param \Drupal\Core\State\StateInterface $state
* The state key/value store. * The state key/value store.
*/ */
public function __construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state) { public function __construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state) {
......
...@@ -20,7 +20,7 @@ class JsCollectionRenderer implements AssetCollectionRendererInterface { ...@@ -20,7 +20,7 @@ class JsCollectionRenderer implements AssetCollectionRendererInterface {
/** /**
* Constructs a JsCollectionRenderer. * Constructs a JsCollectionRenderer.
* *
* @param \Drupal\Core\State\StateInterface * @param \Drupal\Core\State\StateInterface $state
* The state key/value store. * The state key/value store.
*/ */
public function __construct(StateInterface $state) { public function __construct(StateInterface $state) {
......
...@@ -24,7 +24,7 @@ class ConfigCollectionInfo extends Event { ...@@ -24,7 +24,7 @@ class ConfigCollectionInfo extends Event {
* *
* @param string $collection * @param string $collection
* Collection name to add. * Collection name to add.
* @param \Drupal\Core\Config\ConfigFactoryOverrideInterface * @param \Drupal\Core\Config\ConfigFactoryOverrideInterface $override_service
* (optional) The configuration factory override service responsible for the * (optional) The configuration factory override service responsible for the
* collection. * collection.
* *
......
...@@ -19,7 +19,7 @@ class ConfigCrudEvent extends Event { ...@@ -19,7 +19,7 @@ class ConfigCrudEvent extends Event {
/** /**
* Constructs a configuration event object. * Constructs a configuration event object.
* *
* @param \Drupal\Core\Config\Config * @param \Drupal\Core\Config\Config $config
* Configuration object. * Configuration object.
*/ */
public function __construct(Config $config) { public function __construct(Config $config) {
......
...@@ -40,7 +40,7 @@ public function installDefaultConfig($type, $name); ...@@ -40,7 +40,7 @@ public function installDefaultConfig($type, $name);
* - it's a configuration entity. * - it's a configuration entity.
* - its dependencies can be met. * - its dependencies can be met.
* *
* @param \Drupal\Core\Config\StorageInterface * @param \Drupal\Core\Config\StorageInterface $storage
* (optional) The configuration storage to search for optional * (optional) The configuration storage to search for optional
* configuration. If not provided, all enabled extension's optional * configuration. If not provided, all enabled extension's optional
* configuration directories will be searched. * configuration directories will be searched.
......
...@@ -37,7 +37,7 @@ class ConfigModuleOverridesEvent extends Event { ...@@ -37,7 +37,7 @@ class ConfigModuleOverridesEvent extends Event {
* *
* @param array $names * @param array $names
* A list of configuration names. * A list of configuration names.
* @param \Drupal\Core\Language\LanguageInterface * @param \Drupal\Core\Language\LanguageInterface $language
* (optional) The language for this configuration. * (optional) The language for this configuration.
*/ */
public function __construct(array $names, LanguageInterface $language = NULL) { public function __construct(array $names, LanguageInterface $language = NULL) {
......
...@@ -83,7 +83,7 @@ class Cron implements CronInterface { ...@@ -83,7 +83,7 @@ class Cron implements CronInterface {
* The account switching service. * The account switching service.
* @param \Psr\Log\LoggerInterface $logger * @param \Psr\Log\LoggerInterface $logger
* A logger instance. * A logger instance.
* @param \Drupal\Core\Queue\QueueWorkerManagerInterface * @param \Drupal\Core\Queue\QueueWorkerManagerInterface $queue_manager
* The queue plugin manager. * The queue plugin manager.
*/ */
public function __construct(ModuleHandlerInterface $module_handler, LockBackendInterface $lock, QueueFactory $queue_factory, StateInterface $state, AccountSwitcherInterface $account_switcher, LoggerInterface $logger, QueueWorkerManagerInterface $queue_manager) { public function __construct(ModuleHandlerInterface $module_handler, LockBackendInterface $lock, QueueFactory $queue_factory, StateInterface $state, AccountSwitcherInterface $account_switcher, LoggerInterface $logger, QueueWorkerManagerInterface $queue_manager) {
......
...@@ -30,7 +30,7 @@ class EntityRouteAlterSubscriber implements EventSubscriberInterface { ...@@ -30,7 +30,7 @@ class EntityRouteAlterSubscriber implements EventSubscriberInterface {
/** /**
* Constructs an EntityRouteAlterSubscriber instance. * Constructs an EntityRouteAlterSubscriber instance.
* *
* @param \Drupal\Core\Entity\EntityResolverManager * @param \Drupal\Core\Entity\EntityResolverManager $entity_resolver_manager
* The entity resolver manager. * The entity resolver manager.
*/ */
public function __construct(EntityResolverManager $entity_resolver_manager) { public function __construct(EntityResolverManager $entity_resolver_manager) {
......
...@@ -245,7 +245,7 @@ public function defaultValuesFormSubmit(array $element, array &$form, FormStateI ...@@ -245,7 +245,7 @@ public function defaultValuesFormSubmit(array $element, array &$form, FormStateI
* in order to be a valid runtime value for the field type; e.g., a date field * in order to be a valid runtime value for the field type; e.g., a date field
* could process the defined value of 'NOW' to a valid date. * could process the defined value of 'NOW' to a valid date.
* *
* @param array * @param array $default_value
* The unprocessed default value defined for the field, as a numerically * The unprocessed default value defined for the field, as a numerically
* indexed array of items, each item being an array of property/value pairs. * indexed array of items, each item being an array of property/value pairs.
* @param \Drupal\Core\Entity\FieldableEntityInterface $entity * @param \Drupal\Core\Entity\FieldableEntityInterface $entity
......
...@@ -34,7 +34,7 @@ class FieldTypePluginManager extends DefaultPluginManager implements FieldTypePl ...@@ -34,7 +34,7 @@ class FieldTypePluginManager extends DefaultPluginManager implements FieldTypePl
* keyed by the corresponding namespace to look for plugin implementations. * keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use. * Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler. * The module handler.
* @param \Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager * @param \Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager
* The typed data manager. * The typed data manager.
......
...@@ -780,7 +780,7 @@ public function setRequestMethod($method); ...@@ -780,7 +780,7 @@ public function setRequestMethod($method);
/** /**
* Returns the HTTP form method. * Returns the HTTP form method.
* *
* @param string * @param string $method_type
* The HTTP form method. * The HTTP form method.
* *
* @return bool * @return bool
......
...@@ -26,7 +26,7 @@ class CurrentLanguageContext implements ContextProviderInterface { ...@@ -26,7 +26,7 @@ class CurrentLanguageContext implements ContextProviderInterface {
/** /**
* Constructs a new CurrentLanguageContext. * Constructs a new CurrentLanguageContext.
* *
* @param \Drupal\Core\Language\LanguageManagerInterface * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager. * The language manager.
*/ */
public function __construct(LanguageManagerInterface $language_manager) { public function __construct(LanguageManagerInterface $language_manager) {
......
...@@ -54,7 +54,7 @@ class PageDisplayVariantSelectionEvent extends Event implements RefinableCacheab ...@@ -54,7 +54,7 @@ class PageDisplayVariantSelectionEvent extends Event implements RefinableCacheab
/** /**
* Constructs the page display variant plugin selection event. * Constructs the page display variant plugin selection event.
* *
* @param string * @param string $plugin_id
* The ID of the page display variant plugin to use by default. * The ID of the page display variant plugin to use by default.
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match, for context. * The current route match, for context.
......
...@@ -36,7 +36,7 @@ public function getParentRouteMatch(); ...@@ -36,7 +36,7 @@ public function getParentRouteMatch();
/** /**
* Returns a route match from a given request, if possible. * Returns a route match from a given request, if possible.
* *
* @param \Symfony\Component\HttpFoundation\Request * @param \Symfony\Component\HttpFoundation\Request $request
* The request. * The request.
* *
* @return \Drupal\Core\Routing\RouteMatchInterface|null * @return \Drupal\Core\Routing\RouteMatchInterface|null
......
...@@ -40,7 +40,7 @@ class PermissionsHashGenerator implements PermissionsHashGeneratorInterface { ...@@ -40,7 +40,7 @@ class PermissionsHashGenerator implements PermissionsHashGeneratorInterface {
* The private key service. * The private key service.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache * @param \Drupal\Core\Cache\CacheBackendInterface $cache
* The cache backend interface to use for the persistent cache. * The cache backend interface to use for the persistent cache.
* @param \Drupal\Core\Cache\CacheBackendInterface * @param \Drupal\Core\Cache\CacheBackendInterface $static
* The cache backend interface to use for the static cache. * The cache backend interface to use for the static cache.
*/ */
public function __construct(PrivateKey $private_key, CacheBackendInterface $cache, CacheBackendInterface $static) { public function __construct(PrivateKey $private_key, CacheBackendInterface $cache, CacheBackendInterface $static) {
......
...@@ -192,7 +192,7 @@ public function getValidationConstraintManager(); ...@@ -192,7 +192,7 @@ public function getValidationConstraintManager();
* The validation constraint manager is used to instantiate validation * The validation constraint manager is used to instantiate validation
* constraint plugins. * constraint plugins.
* *
* @param \Drupal\Core\Validation\ConstraintManager * @param \Drupal\Core\Validation\ConstraintManager $constraintManager
* The constraint manager to set. * The constraint manager to set.
*/ */
public function setValidationConstraintManager(ConstraintManager $constraintManager); public function setValidationConstraintManager(ConstraintManager $constraintManager);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment