Fix inability to assign services with no variables, closes #447

This commit is contained in:
Dane Everitt 2017-05-22 18:43:49 -05:00
parent 3877aba373
commit 999411da29
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 8 additions and 0 deletions

View file

@ -733,6 +733,10 @@ class ServerRepository
$i++;
}
if ($parsed->count() === 0) {
return collect($merge);
}
return $parsed->merge($merge);
}