Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Issues (184)

routes/vendor.php (1 issue)

Labels
Severity
1
<?php
2
3
use Illuminate\Support\Facades\Route;
4
5
/*
6
    |--------------------------------------------------------------------------
7
    | Elfinder routes.
8
    |--------------------------------------------------------------------------
9
    |
10
    | Define the routes for the elfinder connectivity.
11
    |
12
    */
13
    Route::get('elfinder')->uses('Barryvdh\Elfinder\ElfinderController@showIndex')->name('elfinder')->middleware('auth');
0 ignored issues
show
The method uses() does not exist on Illuminate\Support\Facades\Route. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

13
    Route::get('elfinder')->/** @scrutinizer ignore-call */ uses('Barryvdh\Elfinder\ElfinderController@showIndex')->name('elfinder')->middleware('auth');

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
14
    Route::any('elfinder/connector')->uses('Barryvdh\Elfinder\ElfinderController@showConnector')->name('elfinder.connector')->middleware('auth');
15
16
    Route::get('elfinder/tinymce', 'Barryvdh\Elfinder\ElfinderController@showTinyMCE4')->middleware('auth');
17
    Route::get('elfinder/popup/{input_id}', 'Barryvdh\Elfinder\ElfinderController@showPopup')->middleware('auth');
18