Finish the processor system

This commit is contained in:
Stéphane Goetz 2015-07-15 14:09:54 +02:00 gecommit door Stéphane Goetz
bovenliggende 7623e7579f
commit 290f52d181
2 gewijzigde bestanden met toevoegingen van 6 en 5 verwijderingen

BIN
daux.phar Executable file → Normal file

Binair bestand niet weergegeven.

Bestand weergeven

@ -31,11 +31,12 @@ class Command extends SymfonyCommand
$width = $this->getApplication()->getTerminalDimensions()[0];
switch(strtolower($input->getOption('processor'))) {
case 'none':
default:
//nothing
}
$processor = $input->getOption('processor');
if (!empty($processor) && $processor != 'none') {
if (file_exists($processor)) {
include $processor;
}
}
switch(strtolower($input->getOption('format'))) {
case 'confluence':