Fixed exception when plugin runs without options (Like "php_parallel_lint: "). Issue #44

This commit is contained in:
Dmitry Khomutov 2017-04-01 11:49:36 +07:00
commit 78c66a4dc3
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9
2 changed files with 6 additions and 1 deletions

View file

@ -193,7 +193,7 @@ class Executor
try {
// Build and run it
$obj = $this->pluginFactory->buildPlugin($class, $options);
$obj = $this->pluginFactory->buildPlugin($class, (is_null($options) ? [] : $options));
return $obj->execute();
} catch (\Exception $ex) {