Completed
Push — master ( d565f6...12549b )
by Michael
02:45
created
app/models/Money.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 	protected $table = 'money';
6 6
 
7 7
 	public function matches()
8
-    {
9
-        return $this->belongsTo('Match');
10
-    }
8
+	{
9
+		return $this->belongsTo('Match');
10
+	}
11 11
 }
12 12
\ No newline at end of file
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
 	protected $table = 'money';
6 6
 
7 7
 	public function matches()
8
-    {
8
+	{
9 9
         return $this->belongsTo('Match');
10 10
     }
11 11
 }
12 12
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Grosswinner.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 class Grosswinner extends Eloquent {
4 4
 
5 5
 	public function matches()
6
-    {
7
-        return $this->belongsTo('Match');
8
-    }
9
-
10
-    public function player()
11
-    {
12
-        return $this->belongsTo('Player');
13
-    }
6
+	{
7
+		return $this->belongsTo('Match');
8
+	}
9
+
10
+	public function player()
11
+	{
12
+		return $this->belongsTo('Player');
13
+	}
14 14
 
15 15
 }
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 class Grosswinner extends Eloquent {
4 4
 
5 5
 	public function matches()
6
-    {
6
+	{
7 7
         return $this->belongsTo('Match');
8 8
     }
9 9
 
Please login to merge, or discard this patch.
app/controllers/OtherController.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 OtherController 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->totalOthers($id);
32
+		$results  = $this->leagueStatistics->totalOthers($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->totalOthers($id);
32
+        $results = $this->leagueStatistics->totalOthers($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 OtherController 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/FinalizeController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	public function create()
29 29
 	{
30 30
 		$view = View::make('finalizematch');
31
-        return $view;
31
+		return $view;
32 32
 	}
33 33
 
34 34
 
Please login to merge, or discard this patch.
app/controllers/LevelsController.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 class LevelsController extends \BaseController {
4 4
 
5 5
 	public function __construct(Level $level)
6
-    {
7
-        $this->level = $level;
8
-    }
6
+	{
7
+		$this->level = $level;
8
+	}
9 9
 
10 10
 	/**
11 11
 	 * Display a listing of the resource.
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 class LevelsController extends \BaseController {
4 4
 
5 5
 	public function __construct(Level $level)
6
-    {
6
+	{
7 7
         $this->level = $level;
8 8
     }
9 9
 
Please login to merge, or discard this patch.
app/controllers/RoundsController.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 class RoundsController extends \BaseController {
6 6
 
7 7
 	public function __construct(RoundRepo $roundRepo)
8
-    {
8
+	{
9 9
 		$this->roundRepo = $roundRepo;
10
-    }
10
+	}
11 11
 
12 12
 	/**
13 13
 	 * Get Data for all rounds
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 	 */
48 48
 	public function show($id)
49 49
 	{
50
-		$results  = $this->roundRepo->findByPlayer($id);
50
+		$results = $this->roundRepo->findByPlayer($id);
51 51
 		$data['data'] = $results;
52 52
 		return $data;
53 53
 	}
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 RoundsController extends \BaseController {
6 6
 
7 7
 	public function __construct(RoundRepo $roundRepo)
8
-    {
8
+	{
9 9
 		$this->roundRepo = $roundRepo;
10 10
     }
11 11
 
Please login to merge, or discard this patch.
app/controllers/LeagueStatisticsController.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@  discard block
 block discarded – undo
5 5
 class LeagueStatisticsController extends \BaseController {
6 6
 
7 7
 	public function __construct(LeagueStatistics $leagueStatistics)
8
-    {
9
-        $this->leagueStatistics = $leagueStatistics;
10
-    }
8
+	{
9
+		$this->leagueStatistics = $leagueStatistics;
10
+	}
11 11
 
12
-    /**
12
+	/**
13 13
 	 * Display a listing of the resource.
14 14
 	 *
15 15
 	 * @return Response
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 */
51 51
 	public function show($id)
52 52
 	{
53
-        return $this->leagueStatistics{$id}(Input::get('year'));
53
+		return $this->leagueStatistics{$id}(Input::get('year'));
54 54
 	}
55 55
 
56 56
 
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 LeagueStatisticsController extends \BaseController {
6 6
 
7 7
 	public function __construct(LeagueStatistics $leagueStatistics)
8
-    {
8
+	{
9 9
         $this->leagueStatistics = $leagueStatistics;
10 10
     }
11 11
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 	 * Show the form for editing the specified resource.
59 59
 	 *
60 60
 	 * @param  int  $id
61
-	 * @return Response
61
+	 * @return integer
62 62
 	 */
63 63
 	public function edit($id)
64 64
 	{
Please login to merge, or discard this patch.
app/controllers/ParController.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 ParController 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->totalPars($id);
32
+		$results  = $this->leagueStatistics->totalPars($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->totalPars($id);
32
+        $results = $this->leagueStatistics->totalPars($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 ParController 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/BirdController.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 BirdController 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->totalBirdies($id);
32
+		$results  = $this->leagueStatistics->totalBirdies($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->totalBirdies($id);
32
+        $results = $this->leagueStatistics->totalBirdies($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 BirdController 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.