This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console/Test/DataProvider/ThemeDataProviderTrait.php
2018-11-23 12:29:20 +00:00

23 lines
440 B
PHP

<?php
namespace Drupal\Console\Test\DataProvider;
/**
* Class ThemeDataProviderTrait
* @package Drupal\Console\Test\DataProvider
*/
trait ThemeDataProviderTrait
{
/**
* @return array
*/
public function commandData()
{
$this->setUpTemporaryDirectory();
return [
['Foo', rand(), $this->dir.'/themes/custom', 'bar', 'Other', '8.x', 'sd', 'global-styling', false, false]
];
}
}