Verified Commit b6a3c633 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3268746 by quietone, xjm: Fix missing newlines for...

Issue #3268746 by quietone, xjm: Fix missing newlines for 'Drupal.Commenting.DocComment.ShortSingleLine'
parent 96b87dfb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -85,6 +85,7 @@ protected static function setTemplateProjectStability(string $root, string $vers

  /**
   * Ensure that the minimum required version of Composer is running.
   *
   * Throw an exception if Composer is too old.
   */
  public static function ensureComposerVersion(): void {
+1 −0
Original line number Diff line number Diff line
@@ -397,6 +397,7 @@ function template_preprocess_textarea(&$variables) {

/**
 * Returns HTML for a form element.
 *
 * Prepares variables for form element templates.
 *
 * Default template: form-element.html.twig.
+2 −0
Original line number Diff line number Diff line
@@ -19,10 +19,12 @@ class Link implements RenderableInterface {

  /**
   * The link text for the anchor tag as a translated string or render array.
   *
   * Strings will be sanitized automatically. If you need to output HTML in
   * the link text, use a render array or an already sanitized string such as
   * the output of \Drupal\Component\Utility\Xss::filter() or
   * \Drupal\Component\Render\FormattableMarkup.
   *
   * @var string|array|\Drupal\Component\Render\MarkupInterface
   */
  protected $text;
+3 −0
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ class DataType extends Plugin {

  /**
   * The definition class to use for defining data of this type.
   *
   * Must implement the \Drupal\Core\TypedData\DataDefinitionInterface.
   *
   * @var string
@@ -68,6 +69,7 @@ class DataType extends Plugin {

  /**
   * The typed data class used for wrapping multiple data items of the type.
   *
   * Must implement the \Drupal\Core\TypedData\ListInterface.
   *
   * @var string
@@ -76,6 +78,7 @@ class DataType extends Plugin {

  /**
   * The definition class to use for defining a list of items of this type.
   *
   * Must implement the \Drupal\Core\TypedData\ListDataDefinitionInterface.
   *
   * @var string
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@ public function testSystemTimezone() {

  /**
   * Tests that DrupalDateTime can detect the right timezone to use.
   *
   * Test with a variety of less commonly used timezone names to
   * help ensure that the system timezone will be different than the
   * stated timezones.
Loading