Completed
Push — master ( 7c218c...593722 )
by Jake
02:19
created

SiteController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A showCreateForm() 0 7 1
1
<?php
2
3
namespace MeestorHok\Blue\Http\Controllers;
4
 
5
use Illuminate\Routing\Controller;
6
use Request;
7
use SEO;
8
9
class SiteController extends Controller
10
{
11
    public function showCreateForm () 
12
    {
13
        return SEO::make([
14
            'title' => 'New Site',
15
            'description' => 'You currently don\'t have a site! Create one now to get started!'
16
        ], 'Blue::auth.new-site');
17
    }
18
}