Completed
Push — master ( d565f6...12549b )
by Michael
02:45
created
app/controllers/NetController.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 class NetController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11
-    }
11
+	}
12 12
 
13
-    /**
13
+	/**
14 14
 	 * Display a listing of the resource.
15 15
 	 *
16 16
 	 * @return Response
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function show($id)
31 31
 	{
32
-        $results  = $this->leagueStatistics->topFiveNetScoresByYear($id);
32
+		$results  = $this->leagueStatistics->topFiveNetScoresByYear($id);
33 33
 		$data['data'] = $results;
34 34
 		return $data;
35 35
 	}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	 */
30 30
 	public function show($id)
31 31
 	{
32
-        $results  = $this->leagueStatistics->topFiveNetScoresByYear($id);
32
+        $results = $this->leagueStatistics->topFiveNetScoresByYear($id);
33 33
 		$data['data'] = $results;
34 34
 		return $data;
35 35
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 class NetController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11 11
     }
12 12
 
Please login to merge, or discard this patch.
app/controllers/MatchRoundController.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 class MatchRoundController extends \BaseController {
6 6
 
7
-	    public function __construct(MatchRoundService $matchRound)
8
-    {
9
-        $this->matchRound = $matchRound;
10
-    }
7
+		public function __construct(MatchRoundService $matchRound)
8
+	{
9
+		$this->matchRound = $matchRound;
10
+	}
11 11
 
12
-    /**
12
+	/**
13 13
 	 * Display a listing of the resource.
14 14
 	 *
15 15
 	 * @return Response
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class MatchRoundController extends \BaseController {
6 6
 
7 7
 	    public function __construct(MatchRoundService $matchRound)
8
-    {
8
+	    {
9 9
         $this->matchRound = $matchRound;
10 10
     }
11 11
 
Please login to merge, or discard this patch.
app/controllers/DoubleController.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 class DoubleController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11
-    }
11
+	}
12 12
 
13
-    /**
13
+	/**
14 14
 	 * Display a listing of the resource.
15 15
 	 *
16 16
 	 * @return Response
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function show($id)
31 31
 	{
32
-        $results  = $this->leagueStatistics->totalDoubles($id);
32
+		$results  = $this->leagueStatistics->totalDoubles($id);
33 33
 		$data['data'] = $results;
34 34
 		return $data;
35 35
 	}
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	 */
30 30
 	public function show($id)
31 31
 	{
32
-        $results  = $this->leagueStatistics->totalDoubles($id);
32
+        $results = $this->leagueStatistics->totalDoubles($id);
33 33
 		$data['data'] = $results;
34 34
 		return $data;
35 35
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 class DoubleController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11 11
     }
12 12
 
Please login to merge, or discard this patch.
app/controllers/HoleScoresController.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@  discard block
 block discarded – undo
5 5
 class HoleScoresController extends \BaseController {
6 6
 
7 7
 	public function __construct(HoleScore $holeScore)
8
-    {
8
+	{
9 9
 		$this->holeScore = $holeScore;
10
-    }
10
+	}
11 11
 
12 12
 	/**
13 13
 	 * Display a listing of the resource.
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 	public function index()
18 18
 	{
19 19
 		$data = $this->holeScore->all();
20
-        return $data;
20
+		return $data;
21 21
 	}
22 22
 
23 23
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class HoleScoresController extends \BaseController {
6 6
 
7 7
 	public function __construct(HoleScore $holeScore)
8
-    {
8
+	{
9 9
 		$this->holeScore = $holeScore;
10 10
     }
11 11
 
Please login to merge, or discard this patch.
app/controllers/AdministrationController.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -2,27 +2,27 @@
 block discarded – undo
2 2
 
3 3
 class AdministrationController extends \BaseController {
4 4
 
5
-    /**
6
-     * Display a listing of the resource.
7
-     *
8
-     * @return Response
9
-     */
10
-    public function index()
11
-    {
12
-        return View::make('administration');
13
-    }
5
+	/**
6
+	 * Display a listing of the resource.
7
+	 *
8
+	 * @return Response
9
+	 */
10
+	public function index()
11
+	{
12
+		return View::make('administration');
13
+	}
14 14
 
15
-    /**
15
+	/**
16 16
 
17 17
     /**
18
-     * Remove the specified resource from storage.
19
-     *
20
-     * @param  int  $id
21
-     * @return Response
22
-     */
23
-    public function destroy($id)
24
-    {
25
-        //
26
-    }
18
+	 * Remove the specified resource from storage.
19
+	 *
20
+	 * @param  int  $id
21
+	 * @return Response
22
+	 */
23
+	public function destroy($id)
24
+	{
25
+		//
26
+	}
27 27
 
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
app/controllers/SkinsController.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 class SkinsController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11
-    }
11
+	}
12 12
 
13
-    /**
13
+	/**
14 14
 	 * Display a listing of the resource.
15 15
 	 *
16 16
 	 * @return Response
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	public function show($id)
31 31
 	{
32 32
 		$results  = $this->leagueStatistics->mostSkinsByYear($id);
33
-		$newvalue = array_values( (array)$results );
33
+		$newvalue = array_values((array) $results);
34 34
 		$data['data'] = $newvalue;
35 35
 		return $data;
36 36
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 class SkinsController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11 11
     }
12 12
 
Please login to merge, or discard this patch.
app/controllers/ScoringAverageController.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 class ScoringAverageController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11
-    }
11
+	}
12 12
 
13
-    /**
13
+	/**
14 14
 	 * Display a listing of the resource.
15 15
 	 *
16 16
 	 * @return Response
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	 */
30 30
 	public function show($id)
31 31
 	{
32
-		$results  = $this->leagueStatistics->topFiveScoringAverageByYear($id);
32
+		$results = $this->leagueStatistics->topFiveScoringAverageByYear($id);
33 33
 		$data['data'] = $results;
34 34
 		return $data;
35 35
 	}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 class ScoringAverageController extends \BaseController {
7 7
 
8 8
 	public function __construct(LeagueStatistics $leagueStatistics)
9
-    {
9
+	{
10 10
 		$this->leagueStatistics = $leagueStatistics;
11 11
     }
12 12
 
Please login to merge, or discard this patch.
app/controllers/RegisterController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	public function create()
22 22
 	{
23 23
 		return View::make('register');
24
-        //load register form
24
+		//load register form
25 25
 
26 26
 	}
27 27
 
Please login to merge, or discard this patch.
app/controllers/CalendarController.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 class CalendarController extends \BaseController {
6 6
 
7 7
 	public function __construct(CalendarService $calendar)
8
-    {
9
-        $this->calendar = $calendar;
10
-    }
8
+	{
9
+		$this->calendar = $calendar;
10
+	}
11 11
 
12
-    /**
12
+	/**
13 13
 	 * Display a listing of the resource.
14 14
 	 *
15 15
 	 * @return Response
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class CalendarController extends \BaseController {
6 6
 
7 7
 	public function __construct(CalendarService $calendar)
8
-    {
8
+	{
9 9
         $this->calendar = $calendar;
10 10
     }
11 11
 
Please login to merge, or discard this patch.