Finish the processor system
This commit is contained in:
parent
7623e7579f
commit
290f52d181
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user