e3a3438ccd
Now you can add generators and extend the markdown parser
11 regels
299 B
PHP
11 regels
299 B
PHP
<?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 generate(Daux $daux, InputInterface $input, OutputInterface $output, $width);
|
|
}
|