GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 6-6 lines in 2 locations

src/AbstractWorkflow.php 2 locations

@@ 1020-1025 (lines=6) @@
1017
                case WorkflowEntryInterface::CREATED: {
1018
                    $result = false;
1019
                }
1020
                case WorkflowEntryInterface::ACTIVATED: {
1021
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
1022
                        $result = true;
1023
                    }
1024
                    break;
1025
                }
1026
                case WorkflowEntryInterface::SUSPENDED: {
1027
                    if (WorkflowEntryInterface::ACTIVATED === $currentState) {
1028
                        $result = true;
@@ 1032-1037 (lines=6) @@
1029
                    }
1030
                    break;
1031
                }
1032
                case WorkflowEntryInterface::KILLED: {
1033
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::ACTIVATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
1034
                        $result = true;
1035
                    }
1036
                    break;
1037
                }
1038
                default: {
1039
                    $result = false;
1040
                    break;