@@ -3,39 +3,39 @@ |
||
3 | 3 | return [ |
4 | 4 | 'modules' => [ |
5 | 5 | "4-4-2" => [ |
6 | - 'roles'=>[1,1,2,1,1,2,1,0,2,0], |
|
6 | + 'roles'=>[1, 1, 2, 1, 1, 2, 1, 0, 2, 0], |
|
7 | 7 | 'character' => 2 |
8 | 8 | ], |
9 | 9 | "4-3-3" => [ |
10 | - 'roles'=>[1,1,2,1,0,3,0,1,1,1], |
|
10 | + 'roles'=>[1, 1, 2, 1, 0, 3, 0, 1, 1, 1], |
|
11 | 11 | 'character' => 1 |
12 | 12 | ], |
13 | 13 | "4-5-1" => [ |
14 | - 'roles'=>[1,1,2,1,1,3,1,0,1,0], |
|
14 | + 'roles'=>[1, 1, 2, 1, 1, 3, 1, 0, 1, 0], |
|
15 | 15 | 'character' => 4 |
16 | 16 | ], |
17 | 17 | "4-2-4" => [ |
18 | - 'roles'=>[1,1,2,1,0,2,0,1,2,1], |
|
18 | + 'roles'=>[1, 1, 2, 1, 0, 2, 0, 1, 2, 1], |
|
19 | 19 | 'character' => 1 |
20 | 20 | ], |
21 | 21 | "3-5-2" => [ |
22 | - 'roles'=>[1,0,3,0,1,3,1,0,2,0], |
|
22 | + 'roles'=>[1, 0, 3, 0, 1, 3, 1, 0, 2, 0], |
|
23 | 23 | 'character' => 2 |
24 | 24 | ], |
25 | 25 | "3-4-3" => [ |
26 | - 'roles'=>[1,0,3,0,1,2,1,1,1,1], |
|
26 | + 'roles'=>[1, 0, 3, 0, 1, 2, 1, 1, 1, 1], |
|
27 | 27 | 'character' => 1 |
28 | 28 | ], |
29 | 29 | "3-3-4" => [ |
30 | - 'roles'=>[1,0,3,0,0,3,0,1,2,1], |
|
30 | + 'roles'=>[1, 0, 3, 0, 0, 3, 0, 1, 2, 1], |
|
31 | 31 | 'character' => 1 |
32 | 32 | ], |
33 | 33 | "5-4-1" => [ |
34 | - 'roles'=>[1,1,3,1,1,2,1,0,1,0], |
|
34 | + 'roles'=>[1, 1, 3, 1, 1, 2, 1, 0, 1, 0], |
|
35 | 35 | 'character' => 4 |
36 | 36 | ], |
37 | 37 | "5-3-2" => [ |
38 | - 'roles'=>[1,1,3,1,0,3,0,0,2,0], |
|
38 | + 'roles'=>[1, 1, 3, 1, 0, 3, 0, 0, 2, 0], |
|
39 | 39 | 'character' => 4 |
40 | 40 | ] |
41 | 41 | ], |
@@ -22,10 +22,10 @@ |
||
22 | 22 | */ |
23 | 23 | public static function get($key, $directory = null) |
24 | 24 | { |
25 | - $fileName = $directory . "config/"; |
|
25 | + $fileName = $directory."config/"; |
|
26 | 26 | $exp = explode(".", $key); |
27 | - if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName . $exp[0] . ".php")) { |
|
28 | - $conf = include($fileName . $exp[0] . ".php"); |
|
27 | + if (is_array($exp) && $exp[0] != null && $exp[1] != null && file_exists($fileName.$exp[0].".php")) { |
|
28 | + $conf = include($fileName.$exp[0].".php"); |
|
29 | 29 | $val = array_key_exists($exp[1], $conf) ? $conf[$exp[1]] : null; |
30 | 30 | return $val; |
31 | 31 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | * @param $currencyString |
15 | 15 | * @return float |
16 | 16 | */ |
17 | - public static function currencyStringToFloat($currencyString){ |
|
17 | + public static function currencyStringToFloat($currencyString) { |
|
18 | 18 | //currency is always in this format € 550 |
19 | 19 | |
20 | 20 | return floatval( |
@@ -14,10 +14,10 @@ |
||
14 | 14 | * @return string |
15 | 15 | */ |
16 | 16 | public static function getHtml($node) { |
17 | - $innerHTML= ''; |
|
17 | + $innerHTML = ''; |
|
18 | 18 | $children = $node->childNodes; |
19 | 19 | foreach ($children as $child) { |
20 | - $innerHTML .= $child->ownerDocument->saveXML( $child ); |
|
20 | + $innerHTML .= $child->ownerDocument->saveXML($child); |
|
21 | 21 | } |
22 | 22 | return $innerHTML; |
23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | public static function getFirstMatch($regexp, $target) |
18 | 18 | { |
19 | 19 | preg_match_all($regexp, $target, $matches); |
20 | - $match = array_key_exists(0,$matches[1]) ? $matches[1][0] : null; |
|
20 | + $match = array_key_exists(0, $matches[1]) ? $matches[1][0] : null; |
|
21 | 21 | return $match; |
22 | 22 | } |
23 | 23 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function testIlluminateConnection() |
14 | 14 | { |
15 | - Illuminate\Database\Capsule\Manager::schema()->create('test', function ($table) { |
|
15 | + Illuminate\Database\Capsule\Manager::schema()->create('test', function($table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('email')->unique(); |
18 | 18 | $table->timestamps(); |
@@ -44,7 +44,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | use Illuminate\Database\Eloquent\Model as Eloquent; |
5 | 5 | |
6 | 6 | |
7 | -abstract class DsManagerOrm extends Eloquent{ |
|
7 | +abstract class DsManagerOrm extends Eloquent { |
|
8 | 8 | |
9 | 9 | protected $hidden = [ |
10 | 10 | 'created_at', |
@@ -35,7 +35,9 @@ discard block |
||
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 |
||
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 | } |