@@ -37,7 +37,7 @@ |
||
37 | 37 | public function jsonSerialize() |
38 | 38 | { |
39 | 39 | $return = (array) $this; |
40 | - $return = array_filter($return, function ($value, $key) { |
|
40 | + $return = array_filter($return, function($value, $key) { |
|
41 | 41 | return !is_null($value); |
42 | 42 | }, ARRAY_FILTER_USE_BOTH); |
43 | 43 | return $return; |
@@ -57,7 +57,7 @@ |
||
57 | 57 | /** @var JobComparisonInterface $jobComparisonBusinessCase */ |
58 | 58 | $jobComparisonBusinessCase = $this->getContainer()->get(JobComparisonInterface::DIC_NAME); |
59 | 59 | |
60 | - $jobs = [ $jobName ]; |
|
60 | + $jobs = [$jobName]; |
|
61 | 61 | |
62 | 62 | if (strpos($jobName, '*') !== false) { |
63 | 63 | $jobs = $this->getJobsMatchingWildcard($jobName); |