RIRController::index()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * app/Http/Controllers/General/RIRController.php
4
 *
5
 * HTTP Controller for RIR tools
6
 *
7
 * This program is free software: you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation, either version 3 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 *
20
 * @package    LibreNMS
21
 * @link       http://librenms.org
22
 * @copyright  2016 Neil Lathwood
23
 * @author     Neil Lathwood <[email protected]>
24
 */
25
26
namespace App\Http\Controllers\General;
27
28
use App\Http\Controllers\Controller;
29
use Illuminate\Http\Request;
30
31
class RIRController extends Controller
32
{
33
    /**
34
     * Display a listing of the resource.
35
     *
36
     * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory|null
37
     */
38 1
    public function index()
39
    {
40 1
        return view('general.rirtools');
41
    }
42
43
    /**
44
     * Show the form for creating a new resource.
45
     *
46
     * @return \Illuminate\Http\Response|null
47
     */
48
    public function create()
49
    {
50
        //
51
    }
52
53
    /**
54
     * Store a newly created resource in storage.
55
     *
56
     * @param  \Illuminate\Http\Request  $request
57
     * @return \Illuminate\Http\Response|null
58
     */
59
    public function store(Request $request)
60
    {
61
        //
62
    }
63
64
    /**
65
     * Display the specified resource.
66
     *
67
     * @param  int  $id
68
     * @return \Illuminate\Http\Response|null
69
     */
70
    public function show($id)
71
    {
72
        //
73
    }
74
75
    /**
76
     * Show the form for editing the specified resource.
77
     *
78
     * @param  int  $id
79
     * @return \Illuminate\Http\Response|null
80
     */
81
    public function edit($id)
82
    {
83
        //
84
    }
85
86
    /**
87
     * Update the specified resource in storage.
88
     *
89
     * @param  \Illuminate\Http\Request  $request
90
     * @param  int  $id
91
     * @return \Illuminate\Http\Response|null
92
     */
93
    public function update(Request $request, $id)
94
    {
95
        //
96
    }
97
98
    /**
99
     * Remove the specified resource from storage.
100
     *
101
     * @param  int  $id
102
     * @return \Illuminate\Http\Response|null
103
     */
104
    public function destroy($id)
105
    {
106
        //
107
    }
108
}
109