Unverified Commit 53e5e338 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2909370 by Spokje, mfernea, neclimdul, zaporylie, quietone, xjm, osman,...

Issue #2909370 by Spokje, mfernea, neclimdul, zaporylie, quietone, xjm, osman, BartoszUrbaniak: Fix 'Drupal.Commenting.VariableComment.IncorrectVarType' coding standard
parent 25718d36
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -39,9 +39,11 @@ class Action extends Plugin {
  /**
   * The route name for a confirmation form for this action.
   *
   * 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 (optional)
   * @var string
   */
  public $confirm_form_route_name = '';

+8 −4
Original line number Diff line number Diff line
@@ -52,11 +52,15 @@ class QueueWorker extends Plugin {
  public $title;

  /**
   * An associative array containing the optional key:
   *   - time: (optional) How much time Drupal cron should spend on calling
   *     this worker in seconds. Defaults to 15.
   * An associative array containing an optional key.
   *
   * @var array (optional)
   * This property is optional and it does not need to be declared.
   *
   * Available keys:
   * - time (optional): How much time Drupal cron should spend on calling this
   *   worker in seconds. Defaults to 15.
   *
   * @var array
   */
  public $cron;

+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ class ExtensionInstallStorage extends InstallStorage {
   *
   * In the early installer this value can be NULL.
   *
   * @var string|NULL
   * @var string|null
   */
  protected $installProfile;

+3 −1
Original line number Diff line number Diff line
@@ -63,7 +63,9 @@ class EntityReferenceSelection extends Plugin {
   * An array of entity types that can be referenced by this plugin. Defaults to
   * all entity types.
   *
   * @var array (optional)
   * This property is optional and it does not need to be declared.
   *
   * @var array
   */
  public $entity_types = [];

+3 −1
Original line number Diff line number Diff line
@@ -68,7 +68,9 @@ class FieldFormatter extends Plugin {
   * formatter in the Field UI when selecting a formatter for a given field
   * instance.
   *
   * @var int optional
   * This property is optional and it does not need to be declared.
   *
   * @var int
   */
  public $weight = NULL;

Loading