daux.io/libs/Format/Base/Generator.php

23 lines
482 B
PHP
Raw Normal View History

<?php namespace Todaymade\Daux\Format\Base;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Todaymade\Daux\Daux;
interface Generator
{
public function __construct(Daux $daux);
/**
2016-07-27 21:32:51 +02:00
* @param int $width
2020-04-22 22:24:52 +02:00
*
* @return mixed
*/
public function generateAll(InputInterface $input, OutputInterface $output, $width);
/**
* @return array
*/
public function getContentTypes();
}