Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / simpletest / src / ContentTypeCreationTrait.php
1 <?php
2
3 namespace Drupal\simpletest;
4
5 use Drupal\Tests\node\Traits\ContentTypeCreationTrait as BaseContentTypeCreationTrait;
6
7 /**
8  * Provides methods to create content type from given values.
9  *
10  * This trait is meant to be used only by test classes.
11  *
12  * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use
13  *   \Drupal\Tests\node\Traits\ContentTypeCreationTrait instead.
14  *
15  * @see https://www.drupal.org/node/2884454
16  */
17 trait ContentTypeCreationTrait {
18
19   use BaseContentTypeCreationTrait;
20
21 }