diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php index 833bce7507d1..dfac0158b79f 100644 --- a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php +++ b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php @@ -157,8 +157,8 @@ class Tasks extends InstallTasks { } } else { - // Database connection failed for some other reason than the database - // not existing. + // Database connection failed for some other reason than a non-existent + // database. $this->fail(t('Failed to connect to your database server. The server reports the following message: %error.', ['%error' => $e->getMessage()])); return FALSE; } diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php index 6e184aea2fab..1c07dfaf382c 100644 --- a/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php +++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php @@ -107,8 +107,8 @@ class Tasks extends InstallTasks { } } else { - // Database connection failed for some other reason than the database - // not existing. + // Database connection failed for some other reason than a non-existent + // database. $this->fail(t('Failed to connect to your database server. The server reports the following message: %error.', ['%error' => $e->getMessage()])); return FALSE; } diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php index 81bdea39bbb4..1acb11941718 100644 --- a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php +++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php @@ -103,8 +103,8 @@ class Tasks extends InstallTasks { } } else { - // Database connection failed for some other reason than the database - // not existing. + // Database connection failed for some other reason than a non-existent + // database. $this->fail(t('Failed to connect to database. The database engine reports the following message: %error.', ['%error' => $e->getMessage()])); return FALSE; } diff --git a/core/lib/Drupal/Core/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Field/FieldItemInterface.php index 8e3e52b9f488..ce171100e7be 100644 --- a/core/lib/Drupal/Core/Field/FieldItemInterface.php +++ b/core/lib/Drupal/Core/Field/FieldItemInterface.php @@ -121,7 +121,7 @@ interface FieldItemInterface extends ComplexDataInterface { * The property value. * * @throws \InvalidArgumentException - * If a not existing property is accessed. + * If a non-existent property is accessed. */ public function __get($property_name); @@ -136,7 +136,7 @@ interface FieldItemInterface extends ComplexDataInterface { * passed instead of a plain value. * * @throws \InvalidArgumentException - * If a not existing property is set. + * If a non-existent property is set. */ public function __set($property_name, $value); diff --git a/core/modules/book/tests/src/Functional/BookTest.php b/core/modules/book/tests/src/Functional/BookTest.php index 99b4ae057917..9dd34263c10e 100644 --- a/core/modules/book/tests/src/Functional/BookTest.php +++ b/core/modules/book/tests/src/Functional/BookTest.php @@ -238,7 +238,7 @@ class BookTest extends BrowserTestBase { $this->drupalGet('book/export/foobar/' . $this->book->id()); $this->assertSession()->statusCodeEquals(404); - // Make sure we get a 404 on a not existing book node. + // Make sure we get a 404 on a non-existent book node. $this->drupalGet('book/export/html/123'); $this->assertSession()->statusCodeEquals(404); diff --git a/core/modules/dblog/tests/src/Functional/DbLogTest.php b/core/modules/dblog/tests/src/Functional/DbLogTest.php index aa8e6d158fca..bda74010e4a4 100644 --- a/core/modules/dblog/tests/src/Functional/DbLogTest.php +++ b/core/modules/dblog/tests/src/Functional/DbLogTest.php @@ -190,7 +190,7 @@ class DbLogTest extends BrowserTestBase { // Login the admin user. $this->drupalLogin($this->adminUser); - // Try to read details of not existing event. + // Try to read details of non-existent event. $this->drupalGet('admin/reports/dblog/event/999999'); // Verify 404 response. $this->assertSession()->statusCodeEquals(404); diff --git a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php index 852069c84fde..5c7ae08570bf 100644 --- a/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php +++ b/core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php @@ -59,7 +59,7 @@ class LinkNotExistingInternalConstraintValidatorTest extends UnitTestCase { $data[] = [$url, TRUE]; - // Not existing routed URL. + // Non-existent routed URL. $url = Url::fromRoute('example.not_existing_route'); $url_generator = $this->createMock('Drupal\Core\Routing\UrlGeneratorInterface'); diff --git a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php index d499bb7d2cd9..359a9ad5bd70 100644 --- a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php +++ b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php @@ -293,7 +293,7 @@ EOF; * @param string $source * Translation source string. * @param string $translation - * Translation to check. Use empty string to check for a not existing + * Translation to check. Use empty string to check for a non-existent * translation. * @param string $langcode * Language code of the language to translate to. diff --git a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php index 61b795d6aa29..831514805b32 100644 --- a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php +++ b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php @@ -294,7 +294,7 @@ class QueryGroupByTest extends ViewsKernelTestBase { } /** - * Tests groupby with a field not existing on some bundle. + * Tests groupby with a non-existent field on some bundle. */ public function testGroupByWithFieldsNotExistingOnBundle() { $field_storage = FieldStorageConfig::create([ diff --git a/core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php b/core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php index e02a16834352..f3afb26cd349 100644 --- a/core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php +++ b/core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php @@ -126,7 +126,7 @@ class ViewAjaxControllerTest extends UnitTestCase { } /** - * Tests with view_name and view_display_id but not existing view. + * Tests non-existent view with view_name and view_display_id. */ public function testMissingView() { $request = new Request(); diff --git a/core/modules/views/tests/src/Unit/ViewsDataTest.php b/core/modules/views/tests/src/Unit/ViewsDataTest.php index 18b7e2f96c0a..37b9fb10687d 100644 --- a/core/modules/views/tests/src/Unit/ViewsDataTest.php +++ b/core/modules/views/tests/src/Unit/ViewsDataTest.php @@ -480,7 +480,7 @@ class ViewsDataTest extends UnitTestCase { } /** - * Tests the cache calls for an not existing table: + * Tests the cache calls for an non-existent table: * * Warm cache: * - all tables @@ -518,7 +518,7 @@ class ViewsDataTest extends UnitTestCase { } /** - * Tests the cache calls for an not existing table: + * Tests the cache calls for an non-existent table: * * Warm cache: * - all tables diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php index 76014c6e8f14..33793b370ffc 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php @@ -375,7 +375,7 @@ class EntityDefinitionUpdateTest extends EntityKernelTestBase { /** * Tests creating and deleting a base field if entities exist. * - * This tests deletion when there are existing entities, but not existing data + * This tests deletion when there are existing entities, but non-existent data * for the field being deleted. * * @see testBaseFieldDeleteWithExistingData() @@ -431,7 +431,7 @@ class EntityDefinitionUpdateTest extends EntityKernelTestBase { /** * Tests creating and deleting a bundle field if entities exist. * - * This tests deletion when there are existing entities, but not existing data + * This tests deletion when there are existing entities, but non-existent data * for the field being deleted. * * @see testBundleFieldDeleteWithExistingData() diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php index 915fe2e41784..4c7868a197bd 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php @@ -206,7 +206,7 @@ class EntityFieldTest extends EntityKernelTestBase { $this->assertTrue(isset($entity->name[0]), new FormattableMarkup('%entity_type: Name string item is set.', ['%entity_type' => $entity_type])); $this->assertFalse(isset($entity->name[1]), new FormattableMarkup('%entity_type: Second name string item is not set as it does not exist', ['%entity_type' => $entity_type])); $this->assertTrue(isset($entity->name), new FormattableMarkup('%entity_type: Name field is set.', ['%entity_type' => $entity_type])); - $this->assertFalse(isset($entity->nameInvalid), new FormattableMarkup('%entity_type: Not existing field is not set.', ['%entity_type' => $entity_type])); + $this->assertFalse(isset($entity->nameInvalid), new FormattableMarkup('%entity_type: Non-existent field is not set.', ['%entity_type' => $entity_type])); unset($entity->name[0]); $this->assertFalse(isset($entity->name[0]), new FormattableMarkup('%entity_type: Name field item is not set.', ['%entity_type' => $entity_type])); diff --git a/core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php b/core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php index 11f6c04abf35..4d1e5a3d34ca 100644 --- a/core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php +++ b/core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php @@ -69,7 +69,7 @@ class DefaultFactoryTest extends TestCase { } /** - * Tests getPluginClass() with a not existing class definition. + * Tests getPluginClass() with a non-existent class definition. * * @covers ::getPluginClass */ @@ -80,7 +80,7 @@ class DefaultFactoryTest extends TestCase { } /** - * Tests getPluginClass() with a not existing class definition. + * Tests getPluginClass() with a non-existent class definition. * * @covers ::getPluginClass */ diff --git a/core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php b/core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php index ae94ab15e2ff..3202b0a1f157 100644 --- a/core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php +++ b/core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php @@ -297,7 +297,7 @@ class PathValidatorTest extends UnitTestCase { } /** - * Tests the isValid() method with a not existing path. + * Tests the isValid() method with a non-existent path. * * @covers ::isValid */