DashboardController   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A gettingStarted() 0 3 1
A show() 0 3 1
1
<?php
2
3
namespace Thinktomorrow\Chief\App\Http\Controllers\Back;
4
5
use Thinktomorrow\Chief\App\Http\Controllers\Controller;
6
7
class DashboardController extends Controller
8
{
9
    /**
10
     * @return \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
11
     */
12
    public function show()
13
    {
14
        return view('chief::admin.dashboard');
15
    }
16
17
    /**
18
     * @return \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
19
     */
20
    public function gettingStarted()
21
    {
22
        return view('chief::admin.dashboard');
23
    }
24
}
25