Completed
Push — master ( 72282c...462347 )
by
unknown
9s
created

CustomerRetribusiController   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 78
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 78
rs 10
c 1
b 0
f 0
wmc 7
lcom 0
cbo 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A index() 0 4 1
A create() 0 4 1
A store() 0 4 1
A show() 0 4 1
A edit() 0 4 1
A update() 0 4 1
A destroy() 0 4 1
1
<?php
2
3
namespace Bantenprov\PelayananKesehatan\Http\Controllers;
4
5
use App\Http\Controllers\Controller;
6
use Illuminate\Http\Request;
7
use Bantenprov\PelayananKesehatan\Facades\CustomerRetribusi;
8
9
/* Model */
10
use Bantenprov\PelayananKesehatan\Models\CustomerRetribusiModel;
11
12
/* ETC */
13
use Ramsey\Uuid\Uuid;
14
15
class CustomerRetribusiController extends Controller
16
{
17
18
    /**
19
    * Display a listing of the resource.
20
    *
21
    * @return Response
22
    */
23
    public function index()
24
    {
25
26
    }
27
28
    /**
29
    * Show the form for creating a new resource.
30
    *
31
    * @return Response
32
    */
33
    public function create()
34
    {
35
36
    }
37
38
    /**
39
    * Store a newly created resource in storage.
40
    *
41
    * @return Response
42
    */
43
    public function store(Request $request)
44
    {
45
46
    }
47
48
    /**
49
    * Display the specified resource.
50
    *
51
    * @param  int  $id
52
    * @return Response
53
    */
54
    public function show($id)
55
    {
56
57
    }
58
59
    /**
60
    * Show the form for editing the specified resource.
61
    *
62
    * @param  int  $id
63
    * @return Response
64
    */
65
    public function edit($id)
66
    {
67
68
    }
69
70
    /**
71
    * Update the specified resource in storage.
72
    *
73
    * @param  int  $id
74
    * @return Response
75
    */
76
    public function update($id)
77
    {
78
79
    }
80
81
    /**
82
    * Remove the specified resource from storage.
83
    *
84
    * @param  int  $id
85
    * @return Response
86
    */
87
    public function destroy($id)
88
    {
89
90
    }
91
92
}
93
94
?>
0 ignored issues
show
Best Practice introduced by
It is not recommended to use PHP's closing tag ?> in files other than templates.

Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.

A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.

Loading history...
95