Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / field / src / Tests / EntityReference / EntityReferenceTestTrait.php
1 <?php
2
3 namespace Drupal\field\Tests\EntityReference;
4
5 use Drupal\Tests\field\Traits\EntityReferenceTestTrait as nonDeprecatedEntityReferenceTestTrait;
6
7 /**
8  * Provides common functionality for the EntityReference test classes.
9  *
10  * @deprecated in Drupal 8.6.2 for removal before 9.0.0. Use
11  *   Drupal\Tests\field\Traits\EntityReferenceTestTrait instead.
12  *
13  * @see https://www.drupal.org/node/2998888
14  */
15 trait EntityReferenceTestTrait {
16
17   use nonDeprecatedEntityReferenceTestTrait;
18
19 }