Code cleanup

This commit is contained in:
Björn Fromme
2018-10-04 11:47:31 +02:00
parent 5c2e7619d0
commit 2b8312c32c
9 changed files with 17 additions and 16 deletions
@@ -50,7 +50,7 @@ class ConfigurationService
$config = [];
foreach (explode(';', $configArray[$itemName]['value']) as $item)
{
list ($value, $label) = explode(':', $item);
[ $value, $label ] = explode(':', $item);
$config[$value] = $label;
}