Transform the server to be able to use the Generator

This commit is contained in:
Stéphane Goetz
2015-07-19 12:21:09 +02:00
bovenliggende d531de86cf
commit 932fab5a84
5 gewijzigde bestanden met toevoegingen van 76 en 58 verwijderingen

Bestand weergeven

@ -6,5 +6,16 @@ use Todaymade\Daux\Daux;
interface Generator
{
public function generate(Daux $daux, InputInterface $input, OutputInterface $output, $width);
/**
* @param Daux $daux
*/
public function __construct(Daux $daux);
/**
* @param InputInterface $input
* @param OutputInterface $output
* @param integer $width
* @return mixed
*/
public function generateAll(InputInterface $input, OutputInterface $output, $width);
}