Commit 7c5daacd authored by catch's avatar catch
Browse files

Issue #3183673 by jonathan1055, longwave: Fix...

Issue #3183673 by jonathan1055, longwave: Fix 'Drupal.Commenting.DocComment.ShortFullStop' coding standard - part 1 auto-fixes
parent 1243ed54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ public function getDefinitions() {
  }

  /**
   * Passes through all unknown calls onto the decorated object
   * Passes through all unknown calls onto the decorated object.
   */
  public function __call($method, $args) {
    return call_user_func_array([$this->decorated, $method], $args);
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ class EmailAction extends ConfigurableActionBase implements ContainerFactoryPlug
  protected $logger;

  /**
   * The mail manager
   * The mail manager.
   *
   * @var \Drupal\Core\Mail\MailManagerInterface
   */
+1 −1
Original line number Diff line number Diff line
@@ -294,7 +294,7 @@ public function validateTokens(array $context_tokens = []) {
  }

  /**
   * Asserts the context tokens are valid
   * Asserts the context tokens are valid.
   *
   * Similar to ::validateTokens, this method returns boolean TRUE when the
   * context tokens are valid, and FALSE when they are not instead of returning
+1 −1
Original line number Diff line number Diff line
@@ -1741,7 +1741,7 @@ public function commit() {
  abstract public function nextId($existing_id = 0);

  /**
   * Prepares a statement for execution and returns a statement object
   * Prepares a statement for execution and returns a statement object.
   *
   * Emulated prepared statements do not communicate with the database server so
   * this method does not check the statement.
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
class Schema extends DatabaseSchema {

  /**
   * Override DatabaseSchema::$defaultSchema
   * Override DatabaseSchema::$defaultSchema.
   *
   * @var string
   */
Loading