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