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

@@ 960-965 (lines=6) @@
957
                case WorkflowEntryInterface::CREATED: {
958
                    $result = false;
959
                }
960
                case WorkflowEntryInterface::ACTIVATED: {
961
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
962
                        $result = true;
963
                    }
964
                    break;
965
                }
966
                case WorkflowEntryInterface::SUSPENDED: {
967
                    if (WorkflowEntryInterface::ACTIVATED === $currentState) {
968
                        $result = true;
@@ 972-977 (lines=6) @@
969
                    }
970
                    break;
971
                }
972
                case WorkflowEntryInterface::KILLED: {
973
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::ACTIVATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
974
                        $result = true;
975
                    }
976
                    break;
977
                }
978
                default: {
979
                    $result = false;
980
                    break;