We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -205,7 +205,8 @@ |
||
205 | 205 | * |
206 | 206 | * @return void |
207 | 207 | */ |
208 | - private function addDcData(&$metadata, $key, $value) { |
|
208 | + private function addDcData(&$metadata, $key, $value) |
|
209 | + { |
|
209 | 210 | if (!empty($value)) { |
210 | 211 | $metadata[] = [$key => $value]; |
211 | 212 | } |
@@ -278,7 +278,7 @@ |
||
278 | 278 | |
279 | 279 | if ($this->solrCoreRepository->findOneByPid($this->pid) === null) { |
280 | 280 | $newRecord = GeneralUtility::makeInstance(SolrCore::class); |
281 | - $newRecord->setLabel($this->getLLL('flexform.solrcore', $this->siteLanguages[0]->getTypo3Language(), $beLabels). ' (PID ' . $this->pid . ')'); |
|
281 | + $newRecord->setLabel($this->getLLL('flexform.solrcore', $this->siteLanguages[0]->getTypo3Language(), $beLabels) . ' (PID ' . $this->pid . ')'); |
|
282 | 282 | $indexName = Solr::createCore(''); |
283 | 283 | if (!empty($indexName)) { |
284 | 284 | $newRecord->setIndexName($indexName); |
@@ -345,7 +345,8 @@ |
||
345 | 345 | * |
346 | 346 | * @return void |
347 | 347 | */ |
348 | - private function setDefault($setting, $value) { |
|
348 | + private function setDefault($setting, $value) |
|
349 | + { |
|
349 | 350 | if (!isset($this->settings[$setting])) { |
350 | 351 | $this->settings[$setting] = $value; |
351 | 352 | } |
@@ -435,7 +435,8 @@ |
||
435 | 435 | * |
436 | 436 | * @return void |
437 | 437 | */ |
438 | - private function setPage() { |
|
438 | + private function setPage() |
|
439 | + { |
|
439 | 440 | if (!empty($this->requestData['logicalPage'])) { |
440 | 441 | $this->requestData['page'] = $this->doc->getPhysicalPage($this->requestData['logicalPage']); |
441 | 442 | // The logical page parameter should not appear again |