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.
Passed
Push — master ( bcdc38...9fa7b2 )
by Brent
19:58 queued 05:43
created

resources/js/app.js   A

Complexity

Total Complexity 1
Complexity/F 0

Size

Lines of Code 14
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
c 0
b 0
f 0
dl 0
loc 14
rs 10
wmc 1
mnd 1
bc 1
fnc 0
bpm 0
cpm 0
noi 1
1
import Vue from 'vue';
2
import axios from 'axios';
3
4
let token = document.head.querySelector('meta[name="csrf-token"]');
5
6
if (token) {
7
    axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
8
}
9
10
Vue.component('tinker', require('./components/Tinker.vue'));
11
12
new Vue({
0 ignored issues
show
Unused Code Best Practice introduced by
The object created with new Vue({IdentifierNode(...ralNode(#web-tinker))}) is not used but discarded. Consider invoking another function instead of a constructor if you are doing this purely for side effects.
Loading history...
13
    el: '#web-tinker',
14
});
15