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

Issue #3268829 by quietone, bbrala: Fix class property comments for...

Issue #3268829 by quietone, bbrala: Fix class property comments for Drupal.Commenting.DocComment.ShortSingleLine
parent c0bc0eb3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -77,8 +77,7 @@ class Unicode {
  const STATUS_SINGLEBYTE = 0;

  /**
   * Indicates that full unicode support with the PHP mbstring extension is
   * being used.
   * Indicates that full unicode support with PHP mbstring extension is used.
   */
  const STATUS_MULTIBYTE = 1;

+6 −4
Original line number Diff line number Diff line
@@ -37,16 +37,18 @@ class OpenDialogCommand implements CommandInterface, CommandWithAttachedAssetsIn
  protected $content;

  /**
   * Stores dialog-specific options passed directly to jQuery UI dialogs. Any
   * jQuery UI option can be used. See http://api.jqueryui.com/dialog.
   * Stores dialog-specific options passed directly to jQuery UI dialogs.
   *
   * Any jQuery UI option can be used.
   *
   * @see http://api.jqueryui.com/dialog.
   *
   * @var array
   */
  protected $dialogOptions;

  /**
   * Custom settings that will be passed to the Drupal behaviors on the content
   * of the dialog.
   * Custom settings passed to Drupal behaviors on the content of the dialog.
   *
   * @var array
   */
+6 −7
Original line number Diff line number Diff line
@@ -52,15 +52,14 @@ class QueueWorker extends Plugin {
  public $title;

  /**
   * An associative array containing an optional key.
   *
   * 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.
   * An optional associative array of settings for cron.
   *
   * @var array
   *   The array has one key, time, which is set to the time Drupal cron should
   *   spend on calling this worker in seconds. The default is set in
   *   \Drupal\Core\Queue\QueueWorkerManager::processDefinition().
   *
   * @see \Drupal\Core\Queue\QueueWorkerManager::processDefinition()
   */
  public $cron;

+1 −2
Original line number Diff line number Diff line
@@ -58,8 +58,7 @@ abstract class Database {
  const RETURN_INSERT_ID = 3;

  /**
   * A nested array of all active connections. It is keyed by database name
   * and target.
   * A nested array of active connections, keyed by database name and target.
   *
   * @var array
   */
+3 −2
Original line number Diff line number Diff line
@@ -93,8 +93,9 @@ class Select extends Query implements SelectInterface {
  protected $range;

  /**
   * An array whose elements specify a query to UNION, and the UNION type. The
   * 'type' key may be '', 'ALL', or 'DISTINCT' to represent a 'UNION',
   * An array whose elements specify a query to UNION, and the UNION type.
   *
   * The 'type' key may be '', 'ALL', or 'DISTINCT' to represent a 'UNION',
   * 'UNION ALL', or 'UNION DISTINCT' statement, respectively.
   *
   * All entries in this array will be applied from front to back, with the
Loading