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.

Issues (4)

resources/js/app.js (1 issue)

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