diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php b/core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php index c950576..1f8a4e9 100644 --- a/core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php +++ b/core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php @@ -31,7 +31,7 @@ /** * A test user with administrative privileges. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $adminUser; diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php index 8e5c454..be89d79 100644 --- a/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php +++ b/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php @@ -31,7 +31,7 @@ class NodeAccessLanguageAwareTest extends NodeTestBase { /** * A normal authenticated user. * - * @var \Drupal\user\Plugin\Core\Entity\User. + * @var \Drupal\user\UserInterface */ protected $web_user; diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php b/core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php index ee1e5ad..8d95c06 100644 --- a/core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php +++ b/core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php @@ -15,14 +15,14 @@ class NodeBlockFunctionalTest extends NodeTestBase { /** * An administrative user for testing. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $adminUser; /** * An unprivileged user for testing. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $webUser; diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php b/core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php index 286d465..604d053 100644 --- a/core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php +++ b/core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php @@ -28,7 +28,7 @@ class IntegrationTest extends ViewTestBase { /** * Stores the user object that accesses the page. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $webUser; diff --git a/core/modules/translation_entity/lib/Drupal/translation_entity/Tests/EntityTranslationTestBase.php b/core/modules/translation_entity/lib/Drupal/translation_entity/Tests/EntityTranslationTestBase.php index 4ceb6c4..4b99445 100644 --- a/core/modules/translation_entity/lib/Drupal/translation_entity/Tests/EntityTranslationTestBase.php +++ b/core/modules/translation_entity/lib/Drupal/translation_entity/Tests/EntityTranslationTestBase.php @@ -40,21 +40,21 @@ /** * The account to be used to test translation operations. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $translator; /** * The account to be used to test multilingual entity editing. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $editor; /** * The account to be used to test access to both workflows. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $administrator; diff --git a/core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php b/core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php index 052c254..bf8c988 100644 --- a/core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php +++ b/core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php @@ -24,7 +24,7 @@ class UserBlocksTests extends WebTestBase { /** * The admin user used in this test. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $adminUser; diff --git a/core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php b/core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php index 68c28bb..7583cb8 100644 --- a/core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php +++ b/core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php @@ -16,7 +16,7 @@ class UserPasswordResetTest extends WebTestBase { /** * The user object to test password resetting. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $account; diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php b/core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php index c77e3b9..d064490 100644 --- a/core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php +++ b/core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php @@ -17,14 +17,14 @@ /** * An admin user with the 'administer views' permission. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $adminUser; /** * An admin user with administrative permissions for views, blocks, and nodes. * - * @var \Drupal\user\Plugin\Core\Entity\User + * @var \Drupal\user\UserInterface */ protected $fullAdminUser;