Version 1
[yaffs-website] / web / core / modules / simpletest / src / RandomGeneratorTrait.php
1 <?php
2
3 namespace Drupal\simpletest;
4
5 use Drupal\Tests\RandomGeneratorTrait as BaseGeneratorTrait;
6
7 /**
8  * Provides random generator utility methods.
9  *
10  * @deprecated in Drupal 8.1.1, will be removed before Drupal 9.0.0.
11  * The trait was moved to another namespace.
12  *
13  * @see \Drupal\Tests
14  */
15 trait RandomGeneratorTrait {
16   use BaseGeneratorTrait;
17
18 }