Completed
Push — master ( b85348...d9d6b1 )
by Nasrul Hazim
02:05
created

DeductionController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Http\Controllers\OpenPayroll\Setting;
4
5
use Illuminate\Http\Request;
6
use App\Http\Controllers\Controller;
0 ignored issues
show
Bug introduced by
The type App\Http\Controllers\Controller was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
8
class DeductionController extends Controller
9
{
10
    /**
11
     * Display a listing of the resource.
12
     *
13
     * @return \Illuminate\Http\Response
14
     */
15
    public function index()
16
    {
17
        //
18
    }
19
20
    /**
21
     * Show the form for creating a new resource.
22
     *
23
     * @return \Illuminate\Http\Response
24
     */
25
    public function create()
26
    {
27
        //
28
    }
29
30
    /**
31
     * Store a newly created resource in storage.
32
     *
33
     * @param  \Illuminate\Http\Request  $request
34
     * @return \Illuminate\Http\Response
35
     */
36
    public function store(Request $request)
37
    {
38
        //
39
    }
40
41
    /**
42
     * Display the specified resource.
43
     *
44
     * @param  int  $id
45
     * @return \Illuminate\Http\Response
46
     */
47
    public function show($id)
48
    {
49
        //
50
    }
51
52
    /**
53
     * Show the form for editing the specified resource.
54
     *
55
     * @param  int  $id
56
     * @return \Illuminate\Http\Response
57
     */
58
    public function edit($id)
59
    {
60
        //
61
    }
62
63
    /**
64
     * Update the specified resource in storage.
65
     *
66
     * @param  \Illuminate\Http\Request  $request
67
     * @param  int  $id
68
     * @return \Illuminate\Http\Response
69
     */
70
    public function update(Request $request, $id)
71
    {
72
        //
73
    }
74
75
    /**
76
     * Remove the specified resource from storage.
77
     *
78
     * @param  int  $id
79
     * @return \Illuminate\Http\Response
80
     */
81
    public function destroy($id)
82
    {
83
        //
84
    }
85
}
86