1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of Gitamin. |
5
|
|
|
* |
6
|
|
|
* Copyright (C) 2015-2016 The Gitamin Team |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Gitamin\Http\Controllers\Projects; |
13
|
|
|
|
14
|
|
|
use Illuminate\Http\Request; |
15
|
|
|
|
16
|
|
|
use Gitamin\Http\Requests; |
17
|
|
|
use Gitamin\Http\Controllers\Controller; |
18
|
|
|
|
19
|
|
|
class TreeController extends Controller |
20
|
|
|
{ |
21
|
|
|
/** |
22
|
|
|
* Display a listing of the resource. |
23
|
|
|
* |
24
|
|
|
* @return \Illuminate\Http\Response |
25
|
|
|
*/ |
26
|
|
|
public function index() |
27
|
|
|
{ |
28
|
|
|
// |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Show the form for creating a new resource. |
33
|
|
|
* |
34
|
|
|
* @return \Illuminate\Http\Response |
35
|
|
|
*/ |
36
|
|
|
public function create() |
37
|
|
|
{ |
38
|
|
|
// |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Store a newly created resource in storage. |
43
|
|
|
* |
44
|
|
|
* @param \Illuminate\Http\Request $request |
45
|
|
|
* @return \Illuminate\Http\Response |
46
|
|
|
*/ |
47
|
|
|
public function store(Request $request) |
|
|
|
|
48
|
|
|
{ |
49
|
|
|
// |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Display the specified resource. |
54
|
|
|
* |
55
|
|
|
* @param int $id |
56
|
|
|
* @return \Illuminate\Http\Response |
57
|
|
|
*/ |
58
|
|
|
public function show($id) |
|
|
|
|
59
|
|
|
{ |
60
|
|
|
// |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Show the form for editing the specified resource. |
65
|
|
|
* |
66
|
|
|
* @param int $id |
67
|
|
|
* @return \Illuminate\Http\Response |
68
|
|
|
*/ |
69
|
|
|
public function edit($id) |
|
|
|
|
70
|
|
|
{ |
71
|
|
|
// |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* Update the specified resource in storage. |
76
|
|
|
* |
77
|
|
|
* @param \Illuminate\Http\Request $request |
78
|
|
|
* @param int $id |
79
|
|
|
* @return \Illuminate\Http\Response |
80
|
|
|
*/ |
81
|
|
|
public function update(Request $request, $id) |
|
|
|
|
82
|
|
|
{ |
83
|
|
|
// |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* Remove the specified resource from storage. |
88
|
|
|
* |
89
|
|
|
* @param int $id |
90
|
|
|
* @return \Illuminate\Http\Response |
91
|
|
|
*/ |
92
|
|
|
public function destroy($id) |
|
|
|
|
93
|
|
|
{ |
94
|
|
|
// |
95
|
|
|
} |
96
|
|
|
} |
97
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.