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.
Completed
Push — master ( 55f45f...84a66e )
by Benjamin
02:43
created

src/actions/plugins/actioncolumn/MenuActions.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 12
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
wmc 2
c 1
b 0
f 0
nc 1
mnd 0
bc 0
fnc 2
dl 0
loc 12
rs 10
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A MenuActions.js ➔ ??? 0 3 1
1
import {
2
    SHOW_MENU,
3
    HIDE_MENU
4
} from '../../../constants/ActionTypes';
5
6
export const showMenu = ({ id, stateKey }) => ({
7
    type: SHOW_MENU, id, stateKey
8
});
9
10
export const hideMenu = ({ id, stateKey }) => ({
11
    type: HIDE_MENU, id, stateKey
12
});
13