Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
c8cfd1d4
Commit
c8cfd1d4
authored
Mar 19, 2017
by
xjm
Browse files
Issue
#2861793
by klausi, martin107: Upgrade Coder to 8.2.12
parent
e59c5e67
Changes
17
Hide whitespace changes
Inline
Side-by-side
composer.lock
View file @
c8cfd1d4
...
...
@@ -3043,16 +3043,16 @@
},
{
"name": "drupal/coder",
"version": "8.2.1
1
",
"version": "8.2.1
2
",
"source": {
"type": "git",
"url": "https://github.com/klausi/coder.git",
"reference": "
564a361274d8234d36385766f063ca89c4184479
"
"reference": "
984c54a7b1e8f27ff1c32348df69712afd86b17f
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/klausi/coder/zipball/
564a361274d8234d36385766f063ca89c4184479
",
"reference": "
564a361274d8234d36385766f063ca89c4184479
",
"url": "https://api.github.com/repos/klausi/coder/zipball/
984c54a7b1e8f27ff1c32348df69712afd86b17f
",
"reference": "
984c54a7b1e8f27ff1c32348df69712afd86b17f
",
"shasum": ""
},
"require": {
...
...
@@ -3076,7 +3076,7 @@
"phpcs",
"standards"
],
"time": "2017-03-
02T08:57:31
+00:00"
"time": "2017-03-
18T10:28:49
+00:00"
},
{
"name": "fabpot/goutte",
...
...
core/composer.json
View file @
c8cfd1d4
...
...
@@ -38,7 +38,7 @@
"require-dev"
:
{
"behat/mink"
:
"1.7.x-dev"
,
"behat/mink-goutte-driver"
:
"~1.2"
,
"drupal/coder"
:
"8.2.1
1
"
,
"drupal/coder"
:
"8.2.1
2
"
,
"jcalderonzumba/gastonjs"
:
"~1.0.2"
,
"jcalderonzumba/mink-phantomjs-driver"
:
"~0.3.1"
,
"mikey179/vfsStream"
:
"~1.2"
,
...
...
core/lib/Drupal/Core/Config/ConfigImporter.php
View file @
c8cfd1d4
...
...
@@ -542,7 +542,7 @@ public function initialize() {
/**
* Processes extensions as a batch operation.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* The batch context.
*/
protected
function
processExtensions
(
&
$context
)
{
...
...
@@ -562,7 +562,7 @@ protected function processExtensions(&$context) {
/**
* Processes configuration as a batch operation.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* The batch context.
*/
protected
function
processConfigurations
(
&
$context
)
{
...
...
@@ -605,7 +605,7 @@ protected function processConfigurations(&$context) {
/**
* Handles processing of missing content.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* Standard batch context.
*/
protected
function
processMissingContent
(
&
$context
)
{
...
...
@@ -637,7 +637,7 @@ protected function processMissingContent(&$context) {
/**
* Finishes the batch.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* The batch context.
*/
protected
function
finish
(
&
$context
)
{
...
...
core/lib/Drupal/Core/Entity/DependencyTrait.php
View file @
c8cfd1d4
...
...
@@ -47,7 +47,7 @@ protected function addDependency($type, $name) {
/**
* Adds multiple dependencies.
*
* @param array $dependencies
.
* @param array $dependencies
* An array of dependencies keyed by the type of dependency. One example:
* @code
* array(
...
...
core/lib/Drupal/Core/Entity/Query/QueryAggregateInterface.php
View file @
c8cfd1d4
...
...
@@ -85,7 +85,7 @@ public function existsAggregate($field, $function, $langcode = NULL);
/**
* Queries for the nonexistence of a field.
*
* @param string $field
.
* @param string $field
* The name of a field.
* @param string $function
* The aggregate function.
...
...
core/lib/Drupal/Core/Entity/Query/QueryInterface.php
View file @
c8cfd1d4
...
...
@@ -114,7 +114,7 @@ public function exists($field, $langcode = NULL);
/**
* Queries for an empty field.
*
* @param $field
.
* @param $field
* Name of a field.
* @param $langcode
* Language code (optional).
...
...
core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php
View file @
c8cfd1d4
...
...
@@ -103,7 +103,7 @@ public function onResponse(FilterResponseEvent $event) {
*
* This is a PHP implementation of the drupal.active-link JavaScript library.
*
* @param string $html_markup
.
* @param string $html_markup
* The HTML markup to update.
* @param string $current_path
* The system path of the currently active page.
...
...
core/lib/Drupal/Core/Extension/ExtensionDiscovery.php
View file @
c8cfd1d4
...
...
@@ -274,7 +274,7 @@ public function setProfileDirectories(array $paths = NULL) {
/**
* Filters out extensions not belonging to the scanned installation profiles.
*
* @param \Drupal\Core\Extension\Extension[] $all_files
.
* @param \Drupal\Core\Extension\Extension[] $all_files
* The list of all extensions.
*
* @return \Drupal\Core\Extension\Extension[]
...
...
@@ -307,7 +307,7 @@ protected function filterByProfileDirectories(array $all_files) {
/**
* Sorts the discovered extensions.
*
* @param \Drupal\Core\Extension\Extension[] $all_files
.
* @param \Drupal\Core\Extension\Extension[] $all_files
* The list of all extensions.
* @param array $weights
* An array of weights, keyed by originating directory.
...
...
core/lib/Drupal/Core/Form/form.api.php
View file @
c8cfd1d4
...
...
@@ -18,7 +18,7 @@
* @param $MULTIPLE_PARAMS
* Additional parameters specific to the batch. These are specified in the
* array passed to batch_set().
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* The batch context array, passed by reference. This contains the following
* properties:
* - 'finished': A float number between 0 and 1 informing the processing
...
...
core/lib/Drupal/Core/Menu/menu.api.php
View file @
c8cfd1d4
...
...
@@ -375,7 +375,7 @@ function hook_local_tasks_alter(&$local_tasks) {
* links.
* @param string $group
* The group of contextual links being rendered.
* @param array $route_parameters
.
* @param array $route_parameters
* The route parameters passed to each route_name of the contextual links.
* For example:
* @code
...
...
core/modules/locale/locale.batch.inc
View file @
c8cfd1d4
...
...
@@ -33,7 +33,7 @@
* batch is finished. Optional, defaults to TRUE.
* - 'use_remote': Whether or not to check the remote translation file.
* Optional, defaults to TRUE.
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* The batch context.
*/
function
locale_translation_batch_status_check
(
$project
,
$langcode
,
array
$options
,
&
$context
)
{
...
...
core/modules/locale/locale.bulk.inc
View file @
c8cfd1d4
...
...
@@ -185,7 +185,7 @@ function locale_translate_batch_build(array $files, array $options) {
* LOCALE_NOT_CUSTOMIZED.
* - 'message': Alternative message to display during import. Note, this must
* be sanitized text.
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* Contains a list of files imported.
*/
function
locale_translate_batch_import
(
$file
,
array
$options
,
&
$context
)
{
...
...
@@ -268,7 +268,7 @@ function locale_translate_batch_import($file, array $options, &$context) {
*
* Save data of imported files.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* Contains a list of imported files.
*/
function
locale_translate_batch_import_save
(
$context
)
{
...
...
@@ -293,7 +293,7 @@ function locale_translate_batch_import_save($context) {
*
* Refreshes translations after importing strings.
*
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* Contains a list of strings updated and information about the progress.
*/
function
locale_translate_batch_refresh
(
&
$context
)
{
...
...
@@ -597,7 +597,7 @@ function locale_config_batch_build(array $names, array $langcodes, array $option
* An array of names of configuration objects to update.
* @param array $langcodes
* (optional) Array of language codes to update. Defaults to all languages.
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* Contains a list of files imported.
*
* @see locale_config_batch_build()
...
...
core/modules/node/node.admin.inc
View file @
c8cfd1d4
...
...
@@ -111,7 +111,7 @@ function _node_mass_update_helper(NodeInterface $node, array $updates, $langcode
* @param bool $revisions
* (optional) TRUE if $nodes contains an array of revision IDs instead of
* node IDs. Defaults to FALSE; will be ignored if $load is FALSE.
* @param array|\ArrayAccess $context
.
* @param array|\ArrayAccess $context
* An array of contextual key/values.
*/
function
_node_mass_update_batch_process
(
array
$nodes
,
array
$updates
,
$langcode
,
$load
,
$revisions
,
&
$context
)
{
...
...
core/modules/simpletest/src/TestDiscovery.php
View file @
c8cfd1d4
...
...
@@ -379,7 +379,7 @@ public static function getTestInfo($classname, $doc_comment = NULL) {
/**
* Parses the phpDoc summary line of a test class.
*
* @param string $doc_comment
.
* @param string $doc_comment
*
* @return string
* The parsed phpDoc summary line. An empty string is returned if no summary
...
...
core/modules/views/src/Tests/ViewTestBase.php
View file @
c8cfd1d4
...
...
@@ -91,7 +91,7 @@ protected function orderResultSet($result_set, $column, $reverse = FALSE) {
*
* @param string $id
* The HTML ID of the button
* @param string $label
.
* @param string $label
* The expected label for the button.
* @param string $message
* (optional) A custom message to display with the assertion. If no custom
...
...
core/modules/views_ui/src/ViewListBuilder.php
View file @
c8cfd1d4
...
...
@@ -45,7 +45,7 @@ public static function createInstance(ContainerInterface $container, EntityTypeI
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param \Drupal\Core\Entity\EntityStorageInterface $storage
.
* @param \Drupal\Core\Entity\EntityStorageInterface $storage
* The entity storage class.
* @param \Drupal\Component\Plugin\PluginManagerInterface $display_manager
* The views display plugin manager to use.
...
...
core/modules/workflows/src/WorkflowInterface.php
View file @
c8cfd1d4
...
...
@@ -118,7 +118,7 @@ public function getInitialState();
*
* @param string $id
* The transition ID.
* @param string $label
.
* @param string $label
* The transition's label.
* @param array $from_state_ids
* The state IDs to transition from.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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