We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 317-321 (lines=5) @@ | ||
| 314 | if (array_key_exists('GraphQLColumn', $annotation) && array_key_exists('type', $annotation['GraphQLColumn'])) { |
|
| 315 | $annotation = $annotation['GraphQLColumn']; |
|
| 316 | $type = $annotation['type']; |
|
| 317 | } elseif (array_key_exists('GraphQLToMany', $annotation) && array_key_exists('target', $annotation['GraphQLToMany'])) { |
|
| 318 | $annotation = $annotation['GraphQLToMany']; |
|
| 319 | $type = $annotation['target']; |
|
| 320 | $isMultiple = $nullable = true; |
|
| 321 | } elseif (array_key_exists('GraphQLToOne', $annotation) && array_key_exists('target', $annotation['GraphQLToOne'])) { |
|
| 322 | $annotation = $annotation['GraphQLToOne']; |
|
| 323 | $type = $annotation['target']; |
|
| 324 | $nullable = true; |
|
| @@ 325-329 (lines=5) @@ | ||
| 322 | $annotation = $annotation['GraphQLToOne']; |
|
| 323 | $type = $annotation['target']; |
|
| 324 | $nullable = true; |
|
| 325 | } elseif (array_key_exists('OneToMany', $annotation) && array_key_exists('targetEntity', $annotation['OneToMany'])) { |
|
| 326 | $annotation = $annotation['OneToMany']; |
|
| 327 | $type = $annotation['targetEntity']; |
|
| 328 | $isMultiple = $nullable = true; |
|
| 329 | } elseif (array_key_exists('OneToOne', $annotation) && array_key_exists('targetEntity', $annotation['OneToOne'])) { |
|
| 330 | $annotation = $annotation['OneToOne']; |
|
| 331 | $type = $annotation['targetEntity']; |
|
| 332 | $nullable = true; |
|
| @@ 333-337 (lines=5) @@ | ||
| 330 | $annotation = $annotation['OneToOne']; |
|
| 331 | $type = $annotation['targetEntity']; |
|
| 332 | $nullable = true; |
|
| 333 | } elseif (array_key_exists('ManyToMany', $annotation) && array_key_exists('targetEntity', $annotation['ManyToMany'])) { |
|
| 334 | $annotation = $annotation['ManyToMany']; |
|
| 335 | $type = $annotation['targetEntity']; |
|
| 336 | $isMultiple = $nullable = true; |
|
| 337 | } elseif (array_key_exists('ManyToOne', $annotation) && array_key_exists('targetEntity', $annotation['ManyToOne'])) { |
|
| 338 | $annotation = $annotation['ManyToOne']; |
|
| 339 | $type = $annotation['targetEntity']; |
|
| 340 | $nullable = true; |
|