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

@@ 951-956 (lines=6) @@
948
                case WorkflowEntryInterface::CREATED: {
949
                    $result = false;
950
                }
951
                case WorkflowEntryInterface::ACTIVATED: {
952
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
953
                        $result = true;
954
                    }
955
                    break;
956
                }
957
                case WorkflowEntryInterface::SUSPENDED: {
958
                    if (WorkflowEntryInterface::ACTIVATED === $currentState) {
959
                        $result = true;
@@ 963-968 (lines=6) @@
960
                    }
961
                    break;
962
                }
963
                case WorkflowEntryInterface::KILLED: {
964
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::ACTIVATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
965
                        $result = true;
966
                    }
967
                    break;
968
                }
969
                default: {
970
                    $result = false;
971
                    break;