diff --git a/composer.lock b/composer.lock index 775324f2471f67ca77934d78122f43f6e3950f7d..d7ad57d22f4c3d286be10c5c817ea055f9daebc1 100644 --- a/composer.lock +++ b/composer.lock @@ -3821,17 +3821,17 @@ }, { "name": "drupal/coder", - "version": "8.3.4", + "version": "8.3.6", "source": { "type": "git", - "url": "https://git.drupal.org/project/coder.git", - "reference": "0a274321f4930f186d9f246783f0b4d743501cf8" + "url": "https://git.drupalcode.org/project/coder.git", + "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820" }, "require": { "ext-mbstring": "*", "php": ">=5.5.9", "squizlabs/php_codesniffer": "^3.4.1", - "symfony/yaml": ">=2.0.0" + "symfony/yaml": ">=2.0.5" }, "require-dev": { "phpunit/phpunit": ">=3.7 <6" @@ -3854,7 +3854,7 @@ "phpcs", "standards" ], - "time": "2019-05-24T11:44:05+00:00" + "time": "2019-08-09T09:27:26+00:00" }, { "name": "fabpot/goutte", diff --git a/core/includes/batch.inc b/core/includes/batch.inc index 90001eb23b17fa71ab2ba225580ef0574939992d..23599e1279bbb7645b56ba15e17c458495a6da4c 100644 --- a/core/includes/batch.inc +++ b/core/includes/batch.inc @@ -364,7 +364,7 @@ function _batch_process() { // If possible, estimate remaining processing time. '@estimate' => ($current > 0) ? \Drupal::service('date.formatter')->formatInterval(($elapsed * ($total - $current) / $current) / 1000) : '-', ]; - $message = strtr($progress_message, $values); + $message = strtr($progress_message, $values); return [$percentage, $message, $task_message]; } diff --git a/core/lib/Drupal/Core/Form/FormBuilderInterface.php b/core/lib/Drupal/Core/Form/FormBuilderInterface.php index 6b6ed83046b0d27b43713a54c960f8207ae70288..66f75d80227912cc071dc74182d5798ba7ac101c 100644 --- a/core/lib/Drupal/Core/Form/FormBuilderInterface.php +++ b/core/lib/Drupal/Core/Form/FormBuilderInterface.php @@ -136,6 +136,19 @@ public function rebuildForm($form_id, FormStateInterface &$form_state, $old_form * There is no return value, but you can check to see if there are errors * by calling $form_state->getErrors(). * + * For example: + * @code + * // register a new user + * $form_state = new FormState(); + * $values['name'] = 'robo-user'; + * $values['mail'] = 'robouser@example.com'; + * $values['pass']['pass1'] = 'password'; + * $values['pass']['pass2'] = 'password'; + * $values['op'] = t('Create new account'); + * $form_state->setValues($values); + * \Drupal::formBuilder()->submitForm('user_register_form', $form_state); + * @endcode + * * @param \Drupal\Core\Form\FormInterface|string $form_arg * The value must be one of the following: * - The name of a class that implements \Drupal\Core\Form\FormInterface. @@ -167,18 +180,6 @@ public function rebuildForm($form_id, FormStateInterface &$form_state, $old_form * $form_state->addBuildInfo('args', [&$object]); * \Drupal::formBuilder()->submitForm('mymodule_form', $form_state); * @endcode - * For example: - * @code - * // register a new user - * $form_state = new FormState(); - * $values['name'] = 'robo-user'; - * $values['mail'] = 'robouser@example.com'; - * $values['pass']['pass1'] = 'password'; - * $values['pass']['pass2'] = 'password'; - * $values['op'] = t('Create new account'); - * $form_state->setValues($values); - * \Drupal::formBuilder()->submitForm('user_register_form', $form_state); - * @endcode */ public function submitForm($form_arg, FormStateInterface &$form_state); diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationSyncingTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationSyncingTest.php index 95464d14158251fa502ba9fb60a334c6b76b80f7..11be61de96ed59eed380cbefddcee14bc51c77c9 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationSyncingTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationSyncingTest.php @@ -189,13 +189,13 @@ public function testStateChangedPreviousRevisionDuringSync() { */ protected function getAllRevisionNames(EntityTestMulRevPub $entity) { $storage = $this->container->get('entity_type.manager')->getStorage('entity_test_mulrevpub'); - return array_map(function($revision_id) use ($storage) { + return array_map(function ($revision_id) use ($storage) { return $storage->loadRevision($revision_id)->name->value; }, array_keys($storage->getQuery() - ->allRevisions() - ->condition('id', $entity->id()) - ->sort('revision_id', 'ASC') - ->execute()) + ->allRevisions() + ->condition('id', $entity->id()) + ->sort('revision_id', 'ASC') + ->execute()) ); } diff --git a/core/modules/tour/src/Tests/TourTestBase.php b/core/modules/tour/src/Tests/TourTestBase.php index ae35dfd6be5a0e68d442512c3c5823cb44849bd8..24c25056ea53afc636c7adceef4d26091551dbee 100644 --- a/core/modules/tour/src/Tests/TourTestBase.php +++ b/core/modules/tour/src/Tests/TourTestBase.php @@ -19,9 +19,6 @@ abstract class TourTestBase extends WebTestBase { * Assert function to determine if tips rendered to the page * have a corresponding page element. * - * @param array $tips - * A list of tips which provide either a "data-id" or "data-class". - * * @code * // Basic example. * $this->assertTourTips(); @@ -34,6 +31,9 @@ abstract class TourTestBase extends WebTestBase { * $tips[] = array('data-class' => 'baz'); * $this->assertTourTips($tips); * @endcode + * + * @param array $tips + * A list of tips which provide either a "data-id" or "data-class". */ public function assertTourTips($tips = []) { // Get the rendered tips and their data-id and data-class attributes. diff --git a/core/modules/tour/tests/src/Functional/TourTestBase.php b/core/modules/tour/tests/src/Functional/TourTestBase.php index 6274a8b941e391dd315d3511188717e6421a359e..6c1a898e2a7b89408fa31b1d2a087667d2807322 100644 --- a/core/modules/tour/tests/src/Functional/TourTestBase.php +++ b/core/modules/tour/tests/src/Functional/TourTestBase.php @@ -14,9 +14,6 @@ abstract class TourTestBase extends BrowserTestBase { * Assert function to determine if tips rendered to the page * have a corresponding page element. * - * @param array $tips - * A list of tips which provide either a "data-id" or "data-class". - * * @code * // Basic example. * $this->assertTourTips(); @@ -29,6 +26,9 @@ abstract class TourTestBase extends BrowserTestBase { * $tips[] = array('data-class' => 'baz'); * $this->assertTourTips($tips); * @endcode + * + * @param array $tips + * A list of tips which provide either a "data-id" or "data-class". */ public function assertTourTips($tips = []) { // Get the rendered tips and their data-id and data-class attributes. diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist index 6fa30859b94daf93474170e7e93443fc65734984..81cd2c369e2006d4b8a74aa813c62dfe97a69b54 100644 --- a/core/phpcs.xml.dist +++ b/core/phpcs.xml.dist @@ -80,6 +80,7 @@ <rule ref="Drupal.Commenting.VariableComment"> <!-- Sniff for: DuplicateVar, EmptyVar, InlineVariableName --> <exclude name="Drupal.Commenting.VariableComment.IncorrectVarType"/> + <exclude name="Drupal.Commenting.VariableComment.Missing"/> <exclude name="Drupal.Commenting.VariableComment.MissingVar"/> <exclude name="Drupal.Commenting.VariableComment.VarOrder"/> <exclude name="Drupal.Commenting.VariableComment.WrongStyle"/>