We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -344,7 +344,8 @@ discard block |
||
| 344 | 344 | * |
| 345 | 345 | * @return bool true if found, false otherwise |
| 346 | 346 | */ |
| 347 | - private function isFound($entry) { |
|
| 347 | + private function isFound($entry) |
|
| 348 | + { |
|
| 348 | 349 | if (!empty($this->requestData['title'] && !empty($this->requestData['types']) && !empty($this->requestData['author']))) { |
| 349 | 350 | return $this->isTitleFound($entry) && $this->isTypeFound($entry) && $this->isAuthorFound($entry); |
| 350 | 351 | } else if (!empty($this->requestData['title']) && !empty($this->requestData['author'])) { |
@@ -372,7 +373,8 @@ discard block |
||
| 372 | 373 | * |
| 373 | 374 | * @return bool true if found, false otherwise |
| 374 | 375 | */ |
| 375 | - private function isAuthorFound($entry) { |
|
| 376 | + private function isAuthorFound($entry) |
|
| 377 | + { |
|
| 376 | 378 | $value = strtolower($entry['author']); |
| 377 | 379 | $author = strtolower($this->requestData['author']); |
| 378 | 380 | return str_contains($value, $author); |
@@ -385,7 +387,8 @@ discard block |
||
| 385 | 387 | * |
| 386 | 388 | * @return bool true if found, false otherwise |
| 387 | 389 | */ |
| 388 | - private function isTitleFound($entry) { |
|
| 390 | + private function isTitleFound($entry) |
|
| 391 | + { |
|
| 389 | 392 | $value = strtolower($entry['label']); |
| 390 | 393 | $title = strtolower($this->requestData['title']); |
| 391 | 394 | return str_contains($value, $title); |
@@ -398,7 +401,8 @@ discard block |
||
| 398 | 401 | * |
| 399 | 402 | * @return bool true if found, false otherwise |
| 400 | 403 | */ |
| 401 | - private function isTypeFound($entry) { |
|
| 404 | + private function isTypeFound($entry) |
|
| 405 | + { |
|
| 402 | 406 | return str_contains($entry['identifier'], $this->requestData['types']); |
| 403 | 407 | } |
| 404 | 408 | |
@@ -409,7 +413,8 @@ discard block |
||
| 409 | 413 | * |
| 410 | 414 | * @return array of object types |
| 411 | 415 | */ |
| 412 | - private function getTypes($entry) { |
|
| 416 | + private function getTypes($entry) |
|
| 417 | + { |
|
| 413 | 418 | $types = []; |
| 414 | 419 | $index = 0; |
| 415 | 420 | |
@@ -433,7 +438,8 @@ discard block |
||
| 433 | 438 | * |
| 434 | 439 | * @return string type name without number |
| 435 | 440 | */ |
| 436 | - private function getType($entry) { |
|
| 441 | + private function getType($entry) |
|
| 442 | + { |
|
| 437 | 443 | $type = $entry['identifier']; |
| 438 | 444 | if (!empty($type)) { |
| 439 | 445 | return strtok($type, ','); |
@@ -364,7 +364,7 @@ |
||
| 364 | 364 | if (!empty($entry[0]['children'])) { |
| 365 | 365 | foreach ($entry[0]['children'] as $child) { |
| 366 | 366 | $type = $this->getType($child); |
| 367 | - if (!(in_array($type, $types)) && $type != NULL) { |
|
| 367 | + if (!(in_array($type, $types)) && $type != null) { |
|
| 368 | 368 | $types[$index] = $type; |
| 369 | 369 | $index++; |
| 370 | 370 | } |
@@ -412,7 +412,8 @@ discard block |
||
| 412 | 412 | return $details; |
| 413 | 413 | } |
| 414 | 414 | |
| 415 | - private function getLogicalStructureFor3D($details) { |
|
| 415 | + private function getLogicalStructureFor3D($details) |
|
| 416 | + { |
|
| 416 | 417 | // add description and identifier for 3D objects |
| 417 | 418 | if ($details['type'] == 'collection' || $details['type'] == 'object') { |
| 418 | 419 | $metadata = $this->getMetadata($details['id']); |
@@ -710,7 +711,8 @@ discard block |
||
| 710 | 711 | } |
| 711 | 712 | } |
| 712 | 713 | |
| 713 | - return array_filter($allMdIds, function ($element) { |
|
| 714 | + return array_filter($allMdIds, function ($element) |
|
| 715 | + { |
|
| 714 | 716 | return !empty($element); |
| 715 | 717 | }); |
| 716 | 718 | } |