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

@@ 975-980 (lines=6) @@
972
                case WorkflowEntryInterface::CREATED: {
973
                    $result = false;
974
                }
975
                case WorkflowEntryInterface::ACTIVATED: {
976
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
977
                        $result = true;
978
                    }
979
                    break;
980
                }
981
                case WorkflowEntryInterface::SUSPENDED: {
982
                    if (WorkflowEntryInterface::ACTIVATED === $currentState) {
983
                        $result = true;
@@ 987-992 (lines=6) @@
984
                    }
985
                    break;
986
                }
987
                case WorkflowEntryInterface::KILLED: {
988
                    if (WorkflowEntryInterface::CREATED === $currentState || WorkflowEntryInterface::ACTIVATED === $currentState || WorkflowEntryInterface::SUSPENDED === $currentState) {
989
                        $result = true;
990
                    }
991
                    break;
992
                }
993
                default: {
994
                    $result = false;
995
                    break;