Commit 203664af authored by catch's avatar catch
Browse files

Issue #3185652 by jonathan1055, daffie: Fix...

Issue #3185652 by jonathan1055, daffie: Fix 'Drupal.Commenting.DocComment.ShortFullStop' coding standard - part 2
parent e542d0e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2036,7 +2036,7 @@ function hook_mail_alter(&$message) {
}

/**
 * Prepares a message based on parameters;
 * Prepares a message based on parameters.
 *
 * This hook is called from MailManagerInterface->mail(). Note that hook_mail(),
 * unlike hook_mail_alter(), is only called on the $module argument to
+8 −5
Original line number Diff line number Diff line
@@ -47,17 +47,20 @@ class Connection extends DatabaseConnection {
  ];

  /**
   * All databases attached to the current database. This is used to allow
   * prefixes to be safely handled without locking the table
   * All databases attached to the current database.
   *
   * This is used to allow prefixes to be safely handled without locking the
   * table.
   *
   * @var array
   */
  protected $attachedDatabases = [];

  /**
   * Whether or not a table has been dropped this request: the destructor will
   * only try to get rid of unnecessary databases if there is potential of them
   * being empty.
   * Whether or not a table has been dropped this request.
   *
   * The destructor will only try to get rid of unnecessary databases if there
   * is potential of them being empty.
   *
   * This variable is set to public because Schema needs to
   * access it. However, it should not be manually set.
+2 −1
Original line number Diff line number Diff line
@@ -15,8 +15,9 @@ abstract class ConditionFundamentals {
  protected $conditions = [];

  /**
   * The conjunction of this condition group. The value is one of the following:
   * The conjunction of this condition group.
   *
   * The value is one of the following:
   * - AND (default)
   * - OR
   *
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
class CKEditorStylesComboTranslationTest extends BrowserTestBase {

  /**
   * {inheritdoc}
   * {@inheritdoc}
   */
  protected static $modules = ['ckeditor', 'config_translation'];

+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ class CommentTranslationUITest extends ContentTranslationUITestBase {
  protected $adminUser;

  /**
   * {inheritdoc}
   * {@inheritdoc}
   */
  protected $defaultCacheContexts = [
    'languages:language_interface',
Loading