b115efc0149d5db39ecf2ea2c62cd94f506a39b0
[yaffs-website] / vendor / drupal / console / Test / DataProvider / EntityDataProviderTrait.php
1 <?php
2
3 namespace Drupal\Console\Test\DataProvider;
4
5 /**
6  * Class EntityDataProviderTrait
7  * @package Drupal\Console\Test\DataProvider
8  */
9 trait EntityDataProviderTrait
10 {
11     /**
12      * @return array
13      */
14     public function commandData()
15     {
16         $this->setUpTemporaryDirectory();
17
18         return [
19           ['Foo', 'Bar', 'foo' . rand(), 'bar', 'admin/structure'],
20         ];
21     }
22 }