Completed
Push — master ( d565f6...12549b )
by Michael
02:45
created
app/models/Hole.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
 	
15 15
 	public function courses()
16 16
     {
17
-        return $this->hasManyThrough('Course','Holescore');
17
+        return $this->hasManyThrough('Course', 'Holescore');
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -2,20 +2,20 @@
 block discarded – undo
2 2
 
3 3
 class Hole extends Eloquent 
4 4
 {
5
-    protected $fillable = ['course_id', 'number', 'par', 'yards', 'handicap'];
5
+	protected $fillable = ['course_id', 'number', 'par', 'yards', 'handicap'];
6 6
 
7
-    public function course()
8
-    {
9
-        return $this->belongsTo('Course');
10
-    }
7
+	public function course()
8
+	{
9
+		return $this->belongsTo('Course');
10
+	}
11 11
 	
12 12
 	public function holescores()
13
-    {
14
-        return $this->hasMany('Holescore');
15
-    }
13
+	{
14
+		return $this->hasMany('Holescore');
15
+	}
16 16
 	
17 17
 	public function courses()
18
-    {
19
-        return $this->hasManyThrough('Course','Holescore');
20
-    }
18
+	{
19
+		return $this->hasManyThrough('Course','Holescore');
20
+	}
21 21
 }
Please login to merge, or discard this patch.
app/models/Single.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 class Single extends Eloquent
4 4
 {
5
-    public function match()
6
-    {
7
-        return $this->belongsTo('Match');
8
-    }
5
+	public function match()
6
+	{
7
+		return $this->belongsTo('Match');
8
+	}
9 9
 
10 10
 	public function players()
11
-    {
12
-        return $this->hasMany('Player');
13
-    }
11
+	{
12
+		return $this->hasMany('Player');
13
+	}
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Game.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 class Game extends Eloquent {
4 4
 	
5 5
 	public function winners()
6
-    {
7
-        return $this->hasMany('Winner');
8
-    }
6
+	{
7
+		return $this->hasMany('Winner');
8
+	}
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Ctp.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,18 +6,18 @@
 block discarded – undo
6 6
 	protected $fillable = ['player_id', 'hole_id', 'match_id', 'money'];
7 7
 
8 8
 	public function match()
9
-    {
10
-        return $this->belongsTo('Match');
11
-    }
9
+	{
10
+		return $this->belongsTo('Match');
11
+	}
12 12
 
13
-    public function player()
14
-    {
15
-        return $this->belongsTo('Player');
16
-    }
13
+	public function player()
14
+	{
15
+		return $this->belongsTo('Player');
16
+	}
17 17
 
18
-    public function hole()
19
-    {
20
-        return $this->belongsTo('Hole');
21
-    }
18
+	public function hole()
19
+	{
20
+		return $this->belongsTo('Hole');
21
+	}
22 22
 
23 23
 }
24 24
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Player.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 	public function holescores()
12 12
 	{
13
-		return $this->hasManyThrough('Holescore','Round');
13
+		return $this->hasManyThrough('Holescore', 'Round');
14 14
 	}
15 15
 
16 16
 	public function skins()
Please login to merge, or discard this patch.
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@  discard block
 block discarded – undo
4 4
 {
5 5
 
6 6
 	public function rounds()
7
-    {
8
-        return $this->hasMany('Round');
9
-    }
7
+	{
8
+		return $this->hasMany('Round');
9
+	}
10 10
 
11 11
 	public function holescores()
12 12
 	{
@@ -14,23 +14,23 @@  discard block
 block discarded – undo
14 14
 	}
15 15
 
16 16
 	public function skins()
17
-    {
18
-        return $this->hasMany('Skin');
19
-    }
17
+	{
18
+		return $this->hasMany('Skin');
19
+	}
20 20
 
21 21
 	public function winners()
22
-    {
23
-        return $this->hasMany('Winner');
24
-    }
22
+	{
23
+		return $this->hasMany('Winner');
24
+	}
25 25
 
26 26
 	public function matches()
27
-    {
28
-        return $this->belongsToMany('Match')->withPivot('level_id', 'group', 'handicap', 'winnings')->withTimestamps();
29
-    }
30
-
31
-    public function teams()
32
-    {
33
-        return $this->hasMany('Team');
34
-    }
27
+	{
28
+		return $this->belongsToMany('Match')->withPivot('level_id', 'group', 'handicap', 'winnings')->withTimestamps();
29
+	}
30
+
31
+	public function teams()
32
+	{
33
+		return $this->hasMany('Team');
34
+	}
35 35
 
36 36
 }
Please login to merge, or discard this patch.
app/models/Holescore.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,16 +2,16 @@
 block discarded – undo
2 2
 
3 3
 class Holescore extends Eloquent {
4 4
 
5
-    protected $guarded = ['id'];
6
-    protected $fillable = ['score', 'hole_id', 'round_id'];
5
+	protected $guarded = ['id'];
6
+	protected $fillable = ['score', 'hole_id', 'round_id'];
7 7
 
8
-    public function round()
9
-    {
10
-        return $this->belongsTo('Round');
11
-    }
8
+	public function round()
9
+	{
10
+		return $this->belongsTo('Round');
11
+	}
12 12
 
13 13
 	public function hole()
14
-    {
15
-        return $this->belongsTo('Hole');
16
-    }
14
+	{
15
+		return $this->belongsTo('Hole');
16
+	}
17 17
 }
18 18
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Level.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 class Level extends Eloquent {
4 4
 	
5 5
 	public function skins()
6
-    {
7
-        return $this->hasMany('Skin');
8
-    }
6
+	{
7
+		return $this->hasMany('Skin');
8
+	}
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Skin.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -3,22 +3,22 @@
 block discarded – undo
3 3
 class Skin extends Eloquent {
4 4
 
5 5
 	public function player()
6
-    {
7
-        return $this->belongsTo('Player');
8
-    }
6
+	{
7
+		return $this->belongsTo('Player');
8
+	}
9 9
 
10 10
 	public function matches()
11
-    {
12
-        return $this->belongsTo('Match');
13
-    }
11
+	{
12
+		return $this->belongsTo('Match');
13
+	}
14 14
 
15 15
 	public function level()
16
-    {
17
-        return $this->belongsTo('Level');
18
-    }
16
+	{
17
+		return $this->belongsTo('Level');
18
+	}
19 19
 
20 20
 	public function hole()
21
-    {
22
-        return $this->belongsTo('Hole');
23
-    }
21
+	{
22
+		return $this->belongsTo('Hole');
23
+	}
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
app/models/Netwinner.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 class Netwinner extends Eloquent {
4 4
 
5 5
 	public function match()
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.