Verified Commit 0d84250c authored by Dave Long's avatar Dave Long
Browse files

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

Revert "Issue #3268833 by quietone, xjm, jungle, ravi.shankar, smustgrave, daffie, Spokje, DanielVeza: Fix method comments in tests for Drupal.Commenting.DocComment.ShortSingleLine"

This reverts commit 43859947.
parent 43859947
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -186,8 +186,6 @@ 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
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@

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

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

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

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

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

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

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