Update export routine.

This commit is contained in:
James Cole
2017-02-05 16:14:23 +01:00
parent 704c0922e8
commit 77e52f42a6
2 changed files with 24 additions and 17 deletions

View File

@@ -25,11 +25,8 @@ interface ProcessorInterface
/**
* Processor constructor.
*
* @param array $settings
*
*/
public function __construct(array $settings);
public function __construct();
/**
* @return bool
@@ -65,4 +62,9 @@ interface ProcessorInterface
* @return Collection
*/
public function getFiles(): Collection;
/**
* @param array $settings
*/
public function setSettings(array $settings);
}