IndividualStatisticsController   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 84
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 7
lcom 0
cbo 1
dl 0
loc 84
rs 10
c 0
b 0
f 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
class IndividualStatisticsController extends \BaseController {
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

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