8
0
Fork 0

Finish the processor system

Dieser Commit ist enthalten in:
Stéphane Goetz 2015-07-15 14:09:54 +02:00 committet von Stéphane Goetz
Ursprung 7623e7579f
Commit 290f52d181
2 geänderte Dateien mit 6 neuen und 5 gelöschten Zeilen

BIN
daux.phar Ausführbare Datei → Normale Datei

Binäre Datei nicht angezeigt.

Datei anzeigen

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