Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / drupal / console-core / src / Generator / GeneratorInterface.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\Console\Core\Generator\Generator.
6  */
7
8 namespace Drupal\Console\Core\Generator;
9
10 /**
11  * Class Generator
12  *
13  * @package Drupal\Console\Core\GeneratorInterface
14  */
15 interface GeneratorInterface
16 {
17
18     /**
19      * @param array $parameters
20      * @return void
21      */
22     public function generate(array $parameters);
23 }