We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -341,7 +341,8 @@ discard block |
||
| 341 | 341 | return $entryArray; |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - private function getTypes($entry) { |
|
| 344 | + private function getTypes($entry) |
|
| 345 | + { |
|
| 345 | 346 | $types = []; |
| 346 | 347 | $index = 0; |
| 347 | 348 | |
@@ -358,7 +359,8 @@ discard block |
||
| 358 | 359 | return $types; |
| 359 | 360 | } |
| 360 | 361 | |
| 361 | - private function getType($entry) { |
|
| 362 | + private function getType($entry) |
|
| 363 | + { |
|
| 362 | 364 | $type = $entry['identifier']; |
| 363 | 365 | if (!empty($type)) { |
| 364 | 366 | 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 | } |