Completed
Branch master (a6481d)
by Fèvre
02:09
created

PageController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 4 1
1
<?php
2
namespace Xetaravel\Http\Controllers\Admin;
3
4
use Xetaravel\Http\Controllers\Controller;
5
use Illuminate\Http\Request;
6
7
class PageController extends Controller
8
{
9
    /**
10
     * Show the application dashboard.
11
     *
12
     * @return \Illuminate\Http\Response
0 ignored issues
show
Documentation introduced by
Should the return type not be \Illuminate\View\View|\I...\Contracts\View\Factory?

This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.

Loading history...
13
     */
14
    public function index()
15
    {
16
        return view('Admin::page.index');
17
    }
18
}
19