diff --git a/src/Checks/SolrIndexCheck.php b/src/Checks/SolrIndexCheck.php index 94589be..32e69b4 100644 --- a/src/Checks/SolrIndexCheck.php +++ b/src/Checks/SolrIndexCheck.php @@ -43,7 +43,7 @@ class SolrIndexCheck implements EnvironmentCheck if (!empty($brokenCores)) { return [ EnvironmentCheck::ERROR, - 'The following indexes are unavailable: ' . implode($brokenCores ?? '', ', ') + 'The following indexes are unavailable: ' . implode(', ', $brokenCores) ]; }