2015-07-19 00:55:57 +02:00
|
|
|
<?php namespace Todaymade\Daux\Format\Base;
|
|
|
|
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use Todaymade\Daux\Daux;
|
|
|
|
|
|
|
|
interface Generator
|
|
|
|
{
|
2015-07-19 12:21:09 +02:00
|
|
|
/**
|
|
|
|
* @param Daux $daux
|
|
|
|
*/
|
|
|
|
public function __construct(Daux $daux);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param InputInterface $input
|
|
|
|
* @param OutputInterface $output
|
2016-07-27 21:32:51 +02:00
|
|
|
* @param int $width
|
2015-07-19 12:21:09 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function generateAll(InputInterface $input, OutputInterface $output, $width);
|
2015-07-28 17:25:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getContentTypes();
|
2015-07-19 00:55:57 +02:00
|
|
|
}
|