populate missing array value types in level namespace

This commit is contained in:
Dylan K. Taylor
2020-01-30 21:01:59 +00:00
parent 8bf469f7fc
commit a5764b3ae9
8 changed files with 25 additions and 0 deletions

View File

@ -53,6 +53,8 @@ interface LevelProvider{
/**
* Generate the needed files in the path given
*
* @param mixed[] $options
*
* @return void
*/
public static function generate(string $path, string $name, int $seed, string $generator, array $options = []);
@ -62,6 +64,9 @@ interface LevelProvider{
*/
public function getGenerator() : string;
/**
* @return mixed[]
*/
public function getGeneratorOptions() : array;
/**