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

Issue #2909372 by zaporylie, quietone, osman, mfernea, shkiper, martin107,...

Issue #2909372 by zaporylie, quietone, osman, mfernea, shkiper, martin107, xjm, andriyun, alexpott, daffie, spokje, borisson_, smustgrave, longwave, ioana apetri, kul.pratap, larowlan: Enable 'Drupal.Commenting.VariableComment.MissingVar' coding standard
parent 6dfca0dd
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -41,11 +41,15 @@ class AppendOp extends AbstractOperation {

  /**
   * An indicator of whether the file we are appending to is managed or not.
   *
   * @var bool
   */
  protected $managed;

  /**
   * An indicator of whether we are allowed to append to a non-scaffolded file.
   *
   * @var bool
   */
  protected $forceAppend;

+2 −0
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@ class Graph {

  /**
   * Holds the directed acyclic graph.
   *
   * @var array
   */
  protected $graph;

+2 −0
Original line number Diff line number Diff line
@@ -11,6 +11,8 @@ abstract class ArrayElement extends Element implements \IteratorAggregate, Typed

  /**
   * Parsed elements.
   *
   * @var array
   */
  protected $elements;

+2 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ class EntityChangedConstraint extends SymfonyConstraint {

  /**
   * The default violation message.
   *
   * @var string
   */
  public $message = 'The content has either been modified by another user, or you have already submitted modifications. As a result, your changes cannot be saved.';

+4 −0
Original line number Diff line number Diff line
@@ -18,11 +18,15 @@ class EntityUntranslatableFieldsConstraint extends SymfonyConstraint {

  /**
   * The message when updating a field but not the current revision.
   *
   * @var string
   */
  public $defaultRevisionMessage = 'Non-translatable fields can only be changed when updating the current revision.';

  /**
   * The message when updating a field but not the original language.
   *
   * @var string
   */
  public $defaultTranslationMessage = 'Non-translatable fields can only be changed when updating the original language.';

Loading