Passed
Push — develop ( 6890af...41eb0d )
by Nikita
05:40
created

EmptyController::edit()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Gameap\Http\Controllers;
4
5
class EmptyController extends Controller
6
{
7
    public function empty()
8
    {
9
        return view('empty');
10
    }
11
12
    public function index()
13
    {
14
        return view('empty');
15
    }
16
17
    public function create()
18
    {
19
        return view('empty');
20
    }
21
22
    public function store()
23
    {
24
        return view('empty');
25
    }
26
27
    public function show()
28
    {
29
        return view('empty');
30
    }
31
32
    public function edit()
33
    {
34
        return view('empty');
35
    }
36
37
    public function update()
38
    {
39
        return view('empty');
40
    }
41
}