1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Gitamin\Http\Controllers\Projects; |
4
|
|
|
|
5
|
|
|
use Illuminate\Http\Request; |
6
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs; |
7
|
|
|
use Illuminate\Support\Facades\Redirect; |
8
|
|
|
use Illuminate\Support\Facades\Auth; |
9
|
|
|
use Illuminate\Support\Facades\View; |
10
|
|
|
use Gitamin\Http\Controllers\Controller; |
11
|
|
|
|
12
|
|
|
class IssuesController extends Controller |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* Display a listing of the resource. |
16
|
|
|
* |
17
|
|
|
* @return \Illuminate\Http\Response |
18
|
|
|
*/ |
19
|
|
|
public function index() |
20
|
|
|
{ |
21
|
|
|
// |
22
|
|
|
return View::make('projects.issues.index') |
23
|
|
|
->withPageTitle(''); |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* Show the form for creating a new resource. |
28
|
|
|
* |
29
|
|
|
* @return \Illuminate\Http\Response |
30
|
|
|
*/ |
31
|
|
|
public function create() |
32
|
|
|
{ |
33
|
|
|
// |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* Store a newly created resource in storage. |
38
|
|
|
* |
39
|
|
|
* @param \Illuminate\Http\Request $request |
40
|
|
|
* @return \Illuminate\Http\Response |
41
|
|
|
*/ |
42
|
|
|
public function store(Request $request) |
|
|
|
|
43
|
|
|
{ |
44
|
|
|
// |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* Display the specified resource. |
49
|
|
|
* |
50
|
|
|
* @param int $id |
51
|
|
|
* @return \Illuminate\Http\Response |
52
|
|
|
*/ |
53
|
|
|
public function show($id) |
|
|
|
|
54
|
|
|
{ |
55
|
|
|
// |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* Show the form for editing the specified resource. |
60
|
|
|
* |
61
|
|
|
* @param int $id |
62
|
|
|
* @return \Illuminate\Http\Response |
63
|
|
|
*/ |
64
|
|
|
public function edit($id) |
|
|
|
|
65
|
|
|
{ |
66
|
|
|
// |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* Update the specified resource in storage. |
71
|
|
|
* |
72
|
|
|
* @param \Illuminate\Http\Request $request |
73
|
|
|
* @param int $id |
74
|
|
|
* @return \Illuminate\Http\Response |
75
|
|
|
*/ |
76
|
|
|
public function update(Request $request, $id) |
|
|
|
|
77
|
|
|
{ |
78
|
|
|
// |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Remove the specified resource from storage. |
83
|
|
|
* |
84
|
|
|
* @param int $id |
85
|
|
|
* @return \Illuminate\Http\Response |
86
|
|
|
*/ |
87
|
|
|
public function destroy($id) |
|
|
|
|
88
|
|
|
{ |
89
|
|
|
// |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.