Verified Commit 32abf4b3 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #2909371 by mfernea, quietone, zaporylie, smustgrave: Fix...

Issue #2909371 by mfernea, quietone, zaporylie, smustgrave: Fix 'Drupal.Commenting.VariableComment.VarOrder' coding standard
parent fd8e5aa2
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,10 +51,10 @@ class Html {
   *   tag. That tag only makes sense in an HTML-served-as-HTML context, in
   *   which case relative URLs are guaranteed to work.
   *
   * @var string[]
   *
   * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
   * @see https://stackoverflow.com/questions/2725156/complete-list-of-html-tag-attributes-which-have-a-url-value
   *
   * @var string[]
   */
  protected static $uriAttributes = ['href', 'poster', 'src', 'cite', 'data', 'action', 'formaction', 'srcset', 'about'];

+2 −2
Original line number Diff line number Diff line
@@ -41,9 +41,9 @@ class OpenDialogCommand implements CommandInterface, CommandWithAttachedAssetsIn
   *
   * Any jQuery UI option can be used.
   *
   * @see http://api.jqueryui.com/dialog.
   *
   * @var array
   *
   * @see http://api.jqueryui.com/dialog.
   */
  protected $dialogOptions;

+6 −6
Original line number Diff line number Diff line
@@ -29,9 +29,9 @@ class Action extends Plugin {
  /**
   * The human-readable name of the action plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

@@ -40,18 +40,18 @@ class Action extends Plugin {
   *
   * This property is optional and it does not need to be declared.
   *
   * @todo Provide a more generic way to allow an action to be confirmed first.
   *
   * @var string
   *
   * @todo Provide a more generic way to allow an action to be confirmed first.
   */
  public $confirm_form_route_name = '';

  /**
   * The entity type the action can apply to.
   *
   * @todo Replace with \Drupal\Core\Plugin\Context\Context.
   *
   * @var string
   *
   * @todo Replace with \Drupal\Core\Plugin\Context\Context.
   */
  public $type = '';

+4 −4
Original line number Diff line number Diff line
@@ -30,18 +30,18 @@ class Archiver extends Plugin {
  /**
   * The human-readable name of the archiver plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The description of the archiver plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description;

+2 −2
Original line number Diff line number Diff line
@@ -42,9 +42,9 @@ class DatabaseBackend implements CacheBackendInterface {
  /**
   * The maximum number of rows that this cache bin table is allowed to store.
   *
   * @see ::MAXIMUM_NONE
   *
   * @var int
   *
   * @see ::MAXIMUM_NONE
   */
  protected $maxRows;

Loading