Added a content type system to be able to extend the conversion mechanism
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
use Todaymade\Daux\Daux;
|
||||
use Todaymade\Daux\Format\Base\ContentTypes\ContentTypeHandler;
|
||||
|
||||
interface Generator
|
||||
{
|
||||
@ -18,4 +19,9 @@ interface Generator
|
||||
* @return mixed
|
||||
*/
|
||||
public function generateAll(InputInterface $input, OutputInterface $output, $width);
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function getContentTypes();
|
||||
}
|
||||
|
Reference in New Issue
Block a user