Finish the processor system

Cette révision appartient à :
Stéphane Goetz 2015-07-15 14:09:54 +02:00 révisé par Stéphane Goetz
Parent 7623e7579f
révision 290f52d181
2 fichiers modifiés avec 6 ajouts et 5 suppressions

BIN
daux.phar Fichier exécutable → Fichier normal

Fichier binaire non affiché.

Voir le fichier

@ -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':