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/web.php (1 issue)

Labels
Severity
1
<?php
2
3
    use Illuminate\Support\Facades\Route;
4
5
    /*
6
    |--------------------------------------------------------------------------
7
    | Page Access
8
    |--------------------------------------------------------------------------
9
    |
10
    | Pages are handled dynamically by the Pages Plugin.
11
    |
12
    | Here is where you can register web routes for your application. These
13
    | routes are loaded by the RouteServiceProvider within a group which
14
    | contains the "web" middleware group. Now create something great!
15
    |
16
    */
17
    Route::get('/')->uses('PageController@index')->name('index');
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

17
    Route::get('/')->/** @scrutinizer ignore-call */ uses('PageController@index')->name('index');

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...
18
19
    /*
20
    |--------------------------------------------------------------------------
21
    | Dashboard Access
22
    |--------------------------------------------------------------------------
23
    |
24
    | Here is where you can register web routes for your application. These
25
    | routes are loaded by the RouteServiceProvider within a group which
26
    | contains the "web" middleware group. Now create something great!
27
    |
28
    */
29
    Route::get('/admin')->uses('DashboardController@index')->name('dashboard')->middleware('auth');
30
31
    /*
32
    |--------------------------------------------------------------------------
33
    | Authentication Access
34
    |--------------------------------------------------------------------------
35
    |
36
    | Here is where you can register web routes for your application. These
37
    | routes are loaded by the RouteServiceProvider within a group which
38
    | contains the "web" middleware group. Now create something great!
39
    |
40
    */
41
    Route::get('/admin/login')->uses('AuthController@form')->name('login');
42
    Route::post('/admin/login')->uses('AuthController@login')->name('AuthLogin');
43
    Route::get('/admin/logout')->uses('AuthController@logout')->name('AuthLogout');
44