We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -280,7 +280,7 @@ |
||
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | if (is_array($metadataArray[$i][$metadataName])) { |
| 283 | - $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function ($x) { return !empty($x); })); |
|
| 283 | + $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function($x) { return !empty($x); })); |
|
| 284 | 284 | } |
| 285 | 285 | } |
| 286 | 286 | $i++; |
@@ -280,7 +280,9 @@ |
||
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | if (is_array($metadataArray[$i][$metadataName])) { |
| 283 | - $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function ($x) { return !empty($x); })); |
|
| 283 | + $metadataArray[$i][$metadataName] = array_values(array_filter($metadataArray[$i][$metadataName], function ($x) |
|
| 284 | + { |
|
| 285 | +return !empty($x); })); |
|
| 284 | 286 | } |
| 285 | 287 | } |
| 286 | 288 | $i++; |
@@ -545,7 +545,8 @@ discard block |
||
| 545 | 545 | * @param \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult $listedMetadata |
| 546 | 546 | * @return array |
| 547 | 547 | */ |
| 548 | - public function findSolrByCollection($collections, $settings, $searchParams, $listedMetadata = null) { |
|
| 548 | + public function findSolrByCollection($collections, $settings, $searchParams, $listedMetadata = null) |
|
| 549 | + { |
|
| 549 | 550 | |
| 550 | 551 | $this->settings = $settings; |
| 551 | 552 | |
@@ -703,7 +704,8 @@ discard block |
||
| 703 | 704 | * @param \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult $listedMetadata |
| 704 | 705 | * @return array |
| 705 | 706 | */ |
| 706 | - protected function fetchMetadataFromSolr($uid, $settings, $listedMetadata = []) { |
|
| 707 | + protected function fetchMetadataFromSolr($uid, $settings, $listedMetadata = []) |
|
| 708 | + { |
|
| 707 | 709 | |
| 708 | 710 | $this->settings = $settings; |
| 709 | 711 | |