Completed
Push — master ( 9fe9e2...c60305 )
by Vincenzo
04:53 queued 02:24
created
api/Lib/DsManager/Models/Player.php 1 patch
Braces   +45 added lines, -15 removed lines patch added patch discarded remove patch
@@ -44,7 +44,9 @@  discard block
 block discarded – undo
44 44
 		$val -= rand(1, 3);
45 45
 		$val += $this->onRoleModifier();
46 46
 		$val += $this->spareChange();
47
-		if ($val < 0) $val = $val * -1;
47
+		if ($val < 0) {
48
+			$val = $val * -1;
49
+		}
48 50
 		$val = round($val, 2);
49 51
 		return $val;
50 52
 	}
@@ -57,7 +59,9 @@  discard block
 block discarded – undo
57 59
 		if ($this->wageReq == null) {
58 60
 			$wage = round($this->getVal() / 10.0, 2);
59 61
 			$wage += $this->spareChange();
60
-			if ($wage < 0) $wage = $wage * -1;
62
+			if ($wage < 0) {
63
+				$wage = $wage * -1;
64
+			}
61 65
 			$this->wageReq = round($wage, 2);
62 66
 		}
63 67
 		return $this->wageReq;
@@ -80,13 +84,27 @@  discard block
 block discarded – undo
80 84
 	 */
81 85
 	private function priceOnSkill()
82 86
 	{
83
-		if ($this->skillAvg > 98) return 130.0;
84
-		if ($this->skillAvg > 90) return 80.0;
85
-		if ($this->skillAvg > 80) return 50.0;
86
-		if ($this->skillAvg > 76) return 20.0;
87
-		if ($this->skillAvg > 70) return 10.0;
88
-		if ($this->skillAvg > 60) return 5.0;
89
-		if ($this->skillAvg > 50) return 2.0;
87
+		if ($this->skillAvg > 98) {
88
+			return 130.0;
89
+		}
90
+		if ($this->skillAvg > 90) {
91
+			return 80.0;
92
+		}
93
+		if ($this->skillAvg > 80) {
94
+			return 50.0;
95
+		}
96
+		if ($this->skillAvg > 76) {
97
+			return 20.0;
98
+		}
99
+		if ($this->skillAvg > 70) {
100
+			return 10.0;
101
+		}
102
+		if ($this->skillAvg > 60) {
103
+			return 5.0;
104
+		}
105
+		if ($this->skillAvg > 50) {
106
+			return 2.0;
107
+		}
90 108
 		return 0.5;
91 109
 
92 110
 	}
@@ -96,12 +114,24 @@  discard block
 block discarded – undo
96 114
 	 */
97 115
 	private function onAgeModifier()
98 116
 	{
99
-		if ($this->age > 32) return -0.5;
100
-		if ($this->age > 30) return -0.2;
101
-		if ($this->age > 28) return -0.1;
102
-		if ($this->age > 26) return 0.1;
103
-		if ($this->age > 22) return 0.2;
104
-		if ($this->age > 20) return 0.3;
117
+		if ($this->age > 32) {
118
+			return -0.5;
119
+		}
120
+		if ($this->age > 30) {
121
+			return -0.2;
122
+		}
123
+		if ($this->age > 28) {
124
+			return -0.1;
125
+		}
126
+		if ($this->age > 26) {
127
+			return 0.1;
128
+		}
129
+		if ($this->age > 22) {
130
+			return 0.2;
131
+		}
132
+		if ($this->age > 20) {
133
+			return 0.3;
134
+		}
105 135
 		return 0.5;
106 136
 	}
107 137
 
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Coach.php 1 patch
Braces   +24 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,9 @@  discard block
 block discarded – undo
35 35
 		if ($this->wageReq == null) {
36 36
 			$wage = $this->wageOnSkill();
37 37
 			$wage += $this->spareChange();
38
-			if ($wage < 0) $wage = $wage * (-1);
38
+			if ($wage < 0) {
39
+				$wage = $wage * (-1);
40
+			}
39 41
 			$this->wageReq = round($wage, 2);
40 42
 		}
41 43
 		return $this->wageReq;
@@ -46,13 +48,27 @@  discard block
 block discarded – undo
46 48
 	 */
47 49
 	private function wageOnSkill()
48 50
 	{
49
-		if ($this->skillAvg > 98) return 5.0;
50
-		if ($this->skillAvg > 90) return 3.5;
51
-		if ($this->skillAvg > 80) return 2.0;
52
-		if ($this->skillAvg > 76) return 1.5;
53
-		if ($this->skillAvg > 70) return 1.0;
54
-		if ($this->skillAvg > 60) return .76;
55
-		if ($this->skillAvg > 50) return .20;
51
+		if ($this->skillAvg > 98) {
52
+			return 5.0;
53
+		}
54
+		if ($this->skillAvg > 90) {
55
+			return 3.5;
56
+		}
57
+		if ($this->skillAvg > 80) {
58
+			return 2.0;
59
+		}
60
+		if ($this->skillAvg > 76) {
61
+			return 1.5;
62
+		}
63
+		if ($this->skillAvg > 70) {
64
+			return 1.0;
65
+		}
66
+		if ($this->skillAvg > 60) {
67
+			return .76;
68
+		}
69
+		if ($this->skillAvg > 50) {
70
+			return .20;
71
+		}
56 72
 		return 0.5;
57 73
 
58 74
 	}
Please login to merge, or discard this patch.
api/Lib/DsManager/Models/Module.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,7 +31,9 @@  discard block
 block discarded – undo
31 31
 	{
32 32
 		$this->moduleCode = $module;
33 33
 		$this->configuration = Config::get("modules.modules", "api/")[$module];
34
-		if ($this->configuration == null) throw new \InvalidArgumentException("Not a valid Module supplied");
34
+		if ($this->configuration == null) {
35
+			throw new \InvalidArgumentException("Not a valid Module supplied");
36
+		}
35 37
 	}
36 38
 
37 39
 	/**
@@ -98,8 +100,9 @@  discard block
 block discarded – undo
98 100
 		$roles = \App\Lib\Helpers\Config::get('modules.roles', "api/");
99 101
 		$rolesKeys = array_keys($roles);
100 102
 		foreach ($this->configuration["roles"] as $index => $playNum) {
101
-			if ($playNum != 0 || $complete)
102
-				$rolesNeeded[$rolesKeys[$index]] = $playNum;
103
+			if ($playNum != 0 || $complete) {
104
+							$rolesNeeded[$rolesKeys[$index]] = $playNum;
105
+			}
103 106
 		}
104 107
 
105 108
 		return $rolesNeeded;
Please login to merge, or discard this patch.