NodeCreationTrait.php 480 B

123456789101112131415161718192021
  1. <?php
  2. namespace Drupal\simpletest;
  3. use Drupal\Tests\node\Traits\NodeCreationTrait as BaseNodeCreationTrait;
  4. /**
  5. * Provides methods to create node based on default settings.
  6. *
  7. * This trait is meant to be used only by test classes.
  8. *
  9. * @deprecated in Drupal 8.4.x. Will be removed before Drupal 9.0.0. Use
  10. * \Drupal\Tests\node\Traits\NodeCreationTrait instead.
  11. *
  12. * @see https://www.drupal.org/node/2884454
  13. */
  14. trait NodeCreationTrait {
  15. use BaseNodeCreationTrait;
  16. }