Issue #3304246 by smustgrave, dhirendra.mishra, gawalin: string' is a reserved keyword as of PHP version 7.0 and should not be used to name a class, interface or trait or as part of a namespace (T_NAMESPACE)

merge-requests/4205/merge
catch 2023-06-29 12:19:14 +01:00
parent b46d0ee347
commit 29d21a7721
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\Tests\field\Functional\String;
namespace Drupal\Tests\field\Functional\FunctionalString;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\entity_test\Entity\EntityTest;

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\Tests\field\Kernel\String;
namespace Drupal\Tests\field\Kernel\KernelString;
use Drupal\Component\Utility\Html;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\Tests\field\Kernel\String;
namespace Drupal\Tests\field\Kernel\KernelString;
use Drupal\Component\Utility\Html;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\Tests\field\Kernel\String;
namespace Drupal\Tests\field\Kernel\KernelString;
use Drupal\entity_test\Entity\EntityTest;
use Drupal\KernelTests\KernelTestBase;

View File

@ -1,6 +1,6 @@
<?php
namespace Drupal\Tests\field\Kernel\String;
namespace Drupal\Tests\field\Kernel\KernelString;
use Drupal\entity_test\Entity\EntityTest;
use Drupal\Tests\field\Kernel\FieldKernelTestBase;

View File

@ -8,7 +8,7 @@ use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\filter\Entity\FilterFormat;
use Drupal\filter\Render\FilteredMarkup;
use Drupal\Tests\field\Functional\String\StringFieldTest;
use Drupal\Tests\field\Functional\FunctionalString\StringFieldTest;
use Drupal\Tests\TestFileCreationTrait;
/**