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