Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
a7b67e7a
Commit
a7b67e7a
authored
Aug 29, 2016
by
Alex Pott
Browse files
Issue
#2721901
by Mile23, anoopjohn: Fix Drupal.Commenting.FunctionComment.MissingParamName
parent
17cd8920
Changes
50
Hide whitespace changes
Inline
Side-by-side
core/lib/Drupal/Component/Assertion/Inspector.php
View file @
a7b67e7a
...
...
@@ -108,7 +108,7 @@ public static function assertAllStringable($traversable) {
* Use this instead of is_string() alone unless the argument being an object
* in any way will cause a problem.
*
* @param mixed string
* @param mixed
$
string
* Variable to be examined
*
* @return bool
...
...
core/lib/Drupal/Component/Gettext/PoItem.php
View file @
a7b67e7a
...
...
@@ -169,7 +169,7 @@ function setComment($comment) {
/**
* Create the PoItem from a structured array.
*
* @param array values
* @param array
$
values
*/
public
function
setFromArray
(
array
$values
=
array
())
{
if
(
isset
(
$values
[
'context'
]))
{
...
...
core/lib/Drupal/Core/Asset/CssCollectionOptimizer.php
View file @
a7b67e7a
...
...
@@ -40,13 +40,13 @@ class CssCollectionOptimizer implements AssetCollectionOptimizerInterface {
/**
* Constructs a CssCollectionOptimizer.
*
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface
$grouper
* The grouper for CSS assets.
* @param \Drupal\Core\Asset\AssetOptimizerInterface
* @param \Drupal\Core\Asset\AssetOptimizerInterface
$optimizer
* The optimizer for a single CSS asset.
* @param \Drupal\Core\Asset\AssetDumperInterface
* @param \Drupal\Core\Asset\AssetDumperInterface
$dumper
* The dumper for optimized CSS assets.
* @param \Drupal\Core\State\StateInterface
* @param \Drupal\Core\State\StateInterface
$state
* The state key/value store.
*/
public
function
__construct
(
AssetCollectionGrouperInterface
$grouper
,
AssetOptimizerInterface
$optimizer
,
AssetDumperInterface
$dumper
,
StateInterface
$state
)
{
...
...
core/lib/Drupal/Core/Asset/CssCollectionRenderer.php
View file @
a7b67e7a
...
...
@@ -63,7 +63,7 @@ class CssCollectionRenderer implements AssetCollectionRendererInterface {
/**
* Constructs a CssCollectionRenderer.
*
* @param \Drupal\Core\State\StateInterface
* @param \Drupal\Core\State\StateInterface
$state
* The state key/value store.
*/
public
function
__construct
(
StateInterface
$state
)
{
...
...
core/lib/Drupal/Core/Asset/JsCollectionOptimizer.php
View file @
a7b67e7a
...
...
@@ -41,13 +41,13 @@ class JsCollectionOptimizer implements AssetCollectionOptimizerInterface {
/**
* Constructs a JsCollectionOptimizer.
*
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface
* @param \Drupal\Core\Asset\AssetCollectionGrouperInterface
$grouper
* The grouper for JS assets.
* @param \Drupal\Core\Asset\AssetOptimizerInterface
* @param \Drupal\Core\Asset\AssetOptimizerInterface
$optimizer
* The optimizer for a single JS asset.
* @param \Drupal\Core\Asset\AssetDumperInterface
* @param \Drupal\Core\Asset\AssetDumperInterface
$dumper
* The dumper for optimized JS assets.
* @param \Drupal\Core\State\StateInterface
* @param \Drupal\Core\State\StateInterface
$state
* The state key/value store.
*/
public
function
__construct
(
AssetCollectionGrouperInterface
$grouper
,
AssetOptimizerInterface
$optimizer
,
AssetDumperInterface
$dumper
,
StateInterface
$state
)
{
...
...
core/lib/Drupal/Core/Asset/JsCollectionRenderer.php
View file @
a7b67e7a
...
...
@@ -20,7 +20,7 @@ class JsCollectionRenderer implements AssetCollectionRendererInterface {
/**
* Constructs a JsCollectionRenderer.
*
* @param \Drupal\Core\State\StateInterface
* @param \Drupal\Core\State\StateInterface
$state
* The state key/value store.
*/
public
function
__construct
(
StateInterface
$state
)
{
...
...
core/lib/Drupal/Core/Config/ConfigCollectionInfo.php
View file @
a7b67e7a
...
...
@@ -24,7 +24,7 @@ class ConfigCollectionInfo extends Event {
*
* @param string $collection
* 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
* collection.
*
...
...
core/lib/Drupal/Core/Config/ConfigCrudEvent.php
View file @
a7b67e7a
...
...
@@ -19,7 +19,7 @@ class ConfigCrudEvent extends Event {
/**
* Constructs a configuration event object.
*
* @param \Drupal\Core\Config\Config
* @param \Drupal\Core\Config\Config
$config
* Configuration object.
*/
public
function
__construct
(
Config
$config
)
{
...
...
core/lib/Drupal/Core/Config/ConfigInstallerInterface.php
View file @
a7b67e7a
...
...
@@ -40,7 +40,7 @@ public function installDefaultConfig($type, $name);
* - it's a configuration entity.
* - its dependencies can be met.
*
* @param \Drupal\Core\Config\StorageInterface
* @param \Drupal\Core\Config\StorageInterface
$storage
* (optional) The configuration storage to search for optional
* configuration. If not provided, all enabled extension's optional
* configuration directories will be searched.
...
...
core/lib/Drupal/Core/Config/ConfigModuleOverridesEvent.php
View file @
a7b67e7a
...
...
@@ -37,7 +37,7 @@ class ConfigModuleOverridesEvent extends Event {
*
* @param array $names
* A list of configuration names.
* @param \Drupal\Core\Language\LanguageInterface
* @param \Drupal\Core\Language\LanguageInterface
$language
* (optional) The language for this configuration.
*/
public
function
__construct
(
array
$names
,
LanguageInterface
$language
=
NULL
)
{
...
...
core/lib/Drupal/Core/Cron.php
View file @
a7b67e7a
...
...
@@ -83,7 +83,7 @@ class Cron implements CronInterface {
* The account switching service.
* @param \Psr\Log\LoggerInterface $logger
* A logger instance.
* @param \Drupal\Core\Queue\QueueWorkerManagerInterface
* @param \Drupal\Core\Queue\QueueWorkerManagerInterface
$queue_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
)
{
...
...
core/lib/Drupal/Core/EventSubscriber/EntityRouteAlterSubscriber.php
View file @
a7b67e7a
...
...
@@ -30,7 +30,7 @@ class EntityRouteAlterSubscriber implements EventSubscriberInterface {
/**
* Constructs an EntityRouteAlterSubscriber instance.
*
* @param \Drupal\Core\Entity\EntityResolverManager
* @param \Drupal\Core\Entity\EntityResolverManager
$entity_resolver_manager
* The entity resolver manager.
*/
public
function
__construct
(
EntityResolverManager
$entity_resolver_manager
)
{
...
...
core/lib/Drupal/Core/Field/FieldItemListInterface.php
View file @
a7b67e7a
...
...
@@ -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
* 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
* indexed array of items, each item being an array of property/value pairs.
* @param \Drupal\Core\Entity\FieldableEntityInterface $entity
...
...
core/lib/Drupal/Core/Field/FieldTypePluginManager.php
View file @
a7b67e7a
...
...
@@ -34,7 +34,7 @@ class FieldTypePluginManager extends DefaultPluginManager implements FieldTypePl
* keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface
* @param \Drupal\Core\Extension\ModuleHandlerInterface
$module_handler
* The module handler.
* @param \Drupal\Core\TypedData\TypedDataManagerInterface $typed_data_manager
* The typed data manager.
...
...
core/lib/Drupal/Core/Form/FormStateInterface.php
View file @
a7b67e7a
...
...
@@ -780,7 +780,7 @@ public function setRequestMethod($method);
/**
* Returns the HTTP form method.
*
* @param string
* @param string
$method_type
* The HTTP form method.
*
* @return bool
...
...
core/lib/Drupal/Core/Language/ContextProvider/CurrentLanguageContext.php
View file @
a7b67e7a
...
...
@@ -26,7 +26,7 @@ class CurrentLanguageContext implements ContextProviderInterface {
/**
* Constructs a new CurrentLanguageContext.
*
* @param \Drupal\Core\Language\LanguageManagerInterface
* @param \Drupal\Core\Language\LanguageManagerInterface
$language_manager
* The language manager.
*/
public
function
__construct
(
LanguageManagerInterface
$language_manager
)
{
...
...
core/lib/Drupal/Core/Render/PageDisplayVariantSelectionEvent.php
View file @
a7b67e7a
...
...
@@ -54,7 +54,7 @@ class PageDisplayVariantSelectionEvent extends Event implements RefinableCacheab
/**
* 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.
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match, for context.
...
...
core/lib/Drupal/Core/Routing/StackedRouteMatchInterface.php
View file @
a7b67e7a
...
...
@@ -36,7 +36,7 @@ public function getParentRouteMatch();
/**
* Returns a route match from a given request, if possible.
*
* @param \Symfony\Component\HttpFoundation\Request
* @param \Symfony\Component\HttpFoundation\Request
$request
* The request.
*
* @return \Drupal\Core\Routing\RouteMatchInterface|null
...
...
core/lib/Drupal/Core/Session/PermissionsHashGenerator.php
View file @
a7b67e7a
...
...
@@ -40,7 +40,7 @@ class PermissionsHashGenerator implements PermissionsHashGeneratorInterface {
* The private key service.
* @param \Drupal\Core\Cache\CacheBackendInterface $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.
*/
public
function
__construct
(
PrivateKey
$private_key
,
CacheBackendInterface
$cache
,
CacheBackendInterface
$static
)
{
...
...
core/lib/Drupal/Core/TypedData/TypedDataManagerInterface.php
View file @
a7b67e7a
...
...
@@ -192,7 +192,7 @@ public function getValidationConstraintManager();
* The validation constraint manager is used to instantiate validation
* constraint plugins.
*
* @param \Drupal\Core\Validation\ConstraintManager
* @param \Drupal\Core\Validation\ConstraintManager
$constraintManager
* The constraint manager to set.
*/
public
function
setValidationConstraintManager
(
ConstraintManager
$constraintManager
);
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment