Verified Commit 43859947 authored by Dave Long's avatar Dave Long
Browse files

Issue #3268833 by quietone, xjm, jungle, ravi.shankar, smustgrave, daffie,...

Issue #3268833 by quietone, xjm, jungle, ravi.shankar, smustgrave, daffie, Spokje, DanielVeza: Fix method comments in tests for Drupal.Commenting.DocComment.ShortSingleLine
parent dbf142e9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -186,6 +186,8 @@ class FormState implements FormStateInterface {
  protected $requestMethod = 'GET';

  /**
   * Determines if the unprocessed form structure is cached.
   *
   * If set to TRUE the original, unprocessed form structure will be cached,
   * which allows the entire form to be rebuilt from cache. A typical form
   * workflow involves two page requests; first, a form is built and rendered
+1 −2
Original line number Diff line number Diff line
@@ -2,8 +2,7 @@

/**
 * @file
 * A module for testing making aggregator_feed base fields' displays
 * configurable.
 * Allows testing of making aggregator_feed base fields' displays configurable.
 */

use Drupal\Core\Entity\EntityTypeInterface;
+3 −6
Original line number Diff line number Diff line
@@ -6,8 +6,7 @@
use Drupal\node\Entity\Node;

/**
 * Tests making aggregator_feed and aggregator_item base fields' displays
 * configurable.
 * Tests aggregator_feed and aggregator_item base fields' displays.
 *
 * @group aggregator
 * @group legacy
@@ -29,8 +28,7 @@ protected function setUp(): void {
  }

  /**
   * Sets feed base fields to configurable display and checks settings are
   * respected.
   * Tests base fields to configurable display settings.
   */
  public function testFeedDisplayConfigurable() {
    $display = EntityViewDisplay::load('aggregator_feed.aggregator_feed.summary');
@@ -77,8 +75,7 @@ public function testFeedDisplayConfigurable() {
  }

  /**
   * Sets item base fields to configurable display and checks settings are
   * respected.
   * Tests item base fields settings.
   */
  public function testItemDisplayConfigurable() {
    $this->createSampleNodes(1);
+1 −2
Original line number Diff line number Diff line
@@ -9,8 +9,7 @@
use Drupal\editor\Entity\Editor;

/**
 * Defines a "LlamaContextualAndButton" plugin, with a contextually OR toolbar
 * builder-enabled "llama" feature.
 * Defines a "LlamaContextualAndButton" plugin, with a "llama" feature.
 *
 * @CKEditorPlugin(
 *   id = "llama_contextual_and_button",
+1 −2
Original line number Diff line number Diff line
@@ -10,8 +10,7 @@
use Drupal\editor\Entity\Editor;

/**
 * Updates if an already migrated CKEditor 5 configuration for text formats
 * has alignment shown as individual buttons instead of a dropdown.
 * Updates text formats that has alignment shown as individual buttons.
 */
function ckeditor5_post_update_alignment_buttons(&$sandbox = []) {
  $config_entity_updater = \Drupal::classResolver(ConfigEntityUpdater::class);
Loading