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

SiteController::showCreateForm()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 9.4285
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
}