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

PageController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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