Completed
Push — master ( 7e6eae...906f5a )
by Phecho
03:07
created

ProjectController::update()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 2
1
<?php
2
3
namespace Gitamin\Http\Controllers\Projects;
4
5
use Illuminate\Http\Request;
6
7
use Gitamin\Http\Requests;
8
use Gitamin\Http\Controllers\Controller;
9
10
class ProjectController extends Controller
11
{
12
    /**
13
     * Display a listing of the resource.
14
     *
15
     * @return \Illuminate\Http\Response
16
     */
17
    public function index()
18
    {
19
        //
20
    }
21
22
    /**
23
     * Show the form for creating a new resource.
24
     *
25
     * @return \Illuminate\Http\Response
26
     */
27
    public function create()
28
    {
29
        //
30
    }
31
32
    /**
33
     * Store a newly created resource in storage.
34
     *
35
     * @param  \Illuminate\Http\Request  $request
36
     * @return \Illuminate\Http\Response
37
     */
38
    public function store(Request $request)
39
    {
40
        //
41
    }
42
43
    /**
44
     * Display the specified resource.
45
     *
46
     * @param  int  $id
47
     * @return \Illuminate\Http\Response
48
     */
49
    public function show($id)
50
    {
51
        //
52
    }
53
54
    /**
55
     * Show the form for editing the specified resource.
56
     *
57
     * @param  int  $id
58
     * @return \Illuminate\Http\Response
59
     */
60
    public function edit($id)
61
    {
62
        //
63
    }
64
65
    /**
66
     * Update the specified resource in storage.
67
     *
68
     * @param  \Illuminate\Http\Request  $request
69
     * @param  int  $id
70
     * @return \Illuminate\Http\Response
71
     */
72
    public function update(Request $request, $id)
73
    {
74
        //
75
    }
76
77
    /**
78
     * Remove the specified resource from storage.
79
     *
80
     * @param  int  $id
81
     * @return \Illuminate\Http\Response
82
     */
83
    public function destroy($id)
84
    {
85
        //
86
    }
87
}
88