Completed
Push — master ( 8208b7...62a982 )
by
unknown
10s
created

CustomerRetribusiController::index()   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
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php 
2
3
namespace Bantenprov\PemakaianBahuJalan\Http\Controllers;
4
5
use App\Http\Controllers\Controller;
6
use Illuminate\Http\Request;
7
use Bantenprov\PemakaianBahuJalan\Facades\CustomerRetribusi;
8
use Bantenprov\PemakaianBahuJalan\Models\CustomerRetribusiModel;
9
10
class CustomerRetribusiController extends Controller 
11
{
12
13
  /**
14
   * Display a listing of the resource.
15
   *
16
   * @return Response
17
   */
18
  public function index()
19
  {
20
    
21
  }
22
23
  /**
24
   * Show the form for creating a new resource.
25
   *
26
   * @return Response
27
   */
28
  public function create()
29
  {
30
    
31
  }
32
33
  /**
34
   * Store a newly created resource in storage.
35
   *
36
   * @return 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 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 Response
59
   */
60
  public function edit($id)
61
  {
62
    
63
  }
64
65
  /**
66
   * Update the specified resource in storage.
67
   *
68
   * @param  int  $id
69
   * @return Response
70
   */
71
  public function update($id)
72
  {
73
    
74
  }
75
76
  /**
77
   * Remove the specified resource from storage.
78
   *
79
   * @param  int  $id
80
   * @return Response
81
   */
82
  public function destroy($id)
83
  {
84
    
85
  }
86
  
87
}
88
89
?>
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...