Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / simpletest / src / SessionTestTrait.php
1 <?php
2
3 namespace Drupal\simpletest;
4
5 use Drupal\Tests\SessionTestTrait as BaseSessionTestTrait;
6
7 /**
8  * Provides methods to generate and get session name in tests.
9  *
10  * @deprecated in Drupal 8.1.1 will be removed before 9.0.0.
11  * This was moved to another namespace.
12  *
13  * @see \Drupal\Tests
14  */
15 trait SessionTestTrait {
16
17   use BaseSessionTestTrait;
18
19 }