@@ -12,15 +12,15 @@ |
||
12 | 12 | */ |
13 | 13 | abstract class DsManagerModel implements ActiveModel |
14 | 14 | { |
15 | - /** |
|
16 | - * @var |
|
17 | - */ |
|
18 | - public $id; |
|
15 | + /** |
|
16 | + * @var |
|
17 | + */ |
|
18 | + public $id; |
|
19 | 19 | |
20 | - /** |
|
21 | - * @return mixed |
|
22 | - */ |
|
23 | - abstract function toArray(); |
|
20 | + /** |
|
21 | + * @return mixed |
|
22 | + */ |
|
23 | + abstract function toArray(); |
|
24 | 24 | /** |
25 | 25 | * @param array $array |
26 | 26 | * @return mixed |
@@ -9,65 +9,65 @@ |
||
9 | 9 | */ |
10 | 10 | class MatchResult |
11 | 11 | { |
12 | - private $goalHome; |
|
13 | - private $goalAway; |
|
14 | - private $homeTeam; |
|
15 | - private $awayTeam; |
|
12 | + private $goalHome; |
|
13 | + private $goalAway; |
|
14 | + private $homeTeam; |
|
15 | + private $awayTeam; |
|
16 | 16 | |
17 | - /** |
|
18 | - * MatchResult constructor. |
|
19 | - * @param $goalHome |
|
20 | - * @param $goalAway |
|
21 | - * @param Team $home |
|
22 | - * @param Team $away |
|
23 | - */ |
|
24 | - public function __construct($goalHome, $goalAway, Team $home, Team $away) |
|
25 | - { |
|
26 | - $this->goalHome = $goalHome; |
|
27 | - $this->goalAway = $goalAway; |
|
28 | - $this->homeTeam = $home; |
|
29 | - $this->awayTeam = $away; |
|
30 | - } |
|
17 | + /** |
|
18 | + * MatchResult constructor. |
|
19 | + * @param $goalHome |
|
20 | + * @param $goalAway |
|
21 | + * @param Team $home |
|
22 | + * @param Team $away |
|
23 | + */ |
|
24 | + public function __construct($goalHome, $goalAway, Team $home, Team $away) |
|
25 | + { |
|
26 | + $this->goalHome = $goalHome; |
|
27 | + $this->goalAway = $goalAway; |
|
28 | + $this->homeTeam = $home; |
|
29 | + $this->awayTeam = $away; |
|
30 | + } |
|
31 | 31 | |
32 | - public function getWinnerLoser() |
|
33 | - { |
|
34 | - if ($this->goalAway == $this->goalHome) { |
|
35 | - return [ |
|
36 | - 'isDraw' => true, |
|
37 | - 'winner' => $this->homeTeam, |
|
38 | - 'loser' => $this->awayTeam |
|
39 | - ]; |
|
40 | - } |
|
32 | + public function getWinnerLoser() |
|
33 | + { |
|
34 | + if ($this->goalAway == $this->goalHome) { |
|
35 | + return [ |
|
36 | + 'isDraw' => true, |
|
37 | + 'winner' => $this->homeTeam, |
|
38 | + 'loser' => $this->awayTeam |
|
39 | + ]; |
|
40 | + } |
|
41 | 41 | |
42 | - if ($this->goalHome > $this->goalAway) { |
|
43 | - return [ |
|
44 | - 'isDraw' => false, |
|
45 | - 'winner' => $this->homeTeam, |
|
46 | - 'loser' => $this->awayTeam |
|
47 | - ]; |
|
48 | - } |
|
42 | + if ($this->goalHome > $this->goalAway) { |
|
43 | + return [ |
|
44 | + 'isDraw' => false, |
|
45 | + 'winner' => $this->homeTeam, |
|
46 | + 'loser' => $this->awayTeam |
|
47 | + ]; |
|
48 | + } |
|
49 | 49 | |
50 | - if ($this->goalHome < $this->goalAway) { |
|
51 | - return [ |
|
52 | - 'isDraw' => false, |
|
53 | - 'winner' => $this->awayTeam, |
|
54 | - 'loser' => $this->homeTeam |
|
55 | - ]; |
|
56 | - } |
|
50 | + if ($this->goalHome < $this->goalAway) { |
|
51 | + return [ |
|
52 | + 'isDraw' => false, |
|
53 | + 'winner' => $this->awayTeam, |
|
54 | + 'loser' => $this->homeTeam |
|
55 | + ]; |
|
56 | + } |
|
57 | 57 | |
58 | - return []; |
|
59 | - } |
|
58 | + return []; |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * @return array |
|
63 | - */ |
|
64 | - public function toArray() |
|
65 | - { |
|
66 | - $result = []; |
|
67 | - $result["goalHome"] = $this->goalHome; |
|
68 | - $result["goalAway"] = $this->goalAway; |
|
69 | - $result['info'] = $this->getWinnerLoser(); |
|
70 | - return $result; |
|
71 | - } |
|
61 | + /** |
|
62 | + * @return array |
|
63 | + */ |
|
64 | + public function toArray() |
|
65 | + { |
|
66 | + $result = []; |
|
67 | + $result["goalHome"] = $this->goalHome; |
|
68 | + $result["goalAway"] = $this->goalAway; |
|
69 | + $result['info'] = $this->getWinnerLoser(); |
|
70 | + return $result; |
|
71 | + } |
|
72 | 72 | |
73 | 73 | } |
74 | 74 | \ No newline at end of file |
@@ -9,31 +9,31 @@ |
||
9 | 9 | */ |
10 | 10 | class Coach extends DsManagerOrm |
11 | 11 | { |
12 | - /** |
|
13 | - * @var string |
|
14 | - */ |
|
15 | - protected $table = 'coaches'; |
|
12 | + /** |
|
13 | + * @var string |
|
14 | + */ |
|
15 | + protected $table = 'coaches'; |
|
16 | 16 | |
17 | - /** |
|
18 | - * @var array |
|
19 | - */ |
|
20 | - protected $fillable = [ |
|
21 | - 'name', |
|
22 | - 'surname', |
|
23 | - 'age', |
|
24 | - 'nationality', |
|
25 | - 'skillAvg', |
|
26 | - 'wageReq', |
|
27 | - 'favouriteModule', |
|
28 | - 'team_id' |
|
29 | - ]; |
|
17 | + /** |
|
18 | + * @var array |
|
19 | + */ |
|
20 | + protected $fillable = [ |
|
21 | + 'name', |
|
22 | + 'surname', |
|
23 | + 'age', |
|
24 | + 'nationality', |
|
25 | + 'skillAvg', |
|
26 | + 'wageReq', |
|
27 | + 'favouriteModule', |
|
28 | + 'team_id' |
|
29 | + ]; |
|
30 | 30 | |
31 | - /** |
|
32 | - * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
33 | - */ |
|
34 | - public function team() |
|
35 | - { |
|
36 | - return $this->belongsTo(Team::class); |
|
37 | - } |
|
31 | + /** |
|
32 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
33 | + */ |
|
34 | + public function team() |
|
35 | + { |
|
36 | + return $this->belongsTo(Team::class); |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 | \ No newline at end of file |
@@ -6,9 +6,9 @@ |
||
6 | 6 | |
7 | 7 | abstract class DsManagerOrm extends Eloquent{ |
8 | 8 | |
9 | - protected $hidden = [ |
|
10 | - 'created_at', |
|
11 | - 'updated_at' |
|
12 | - ]; |
|
9 | + protected $hidden = [ |
|
10 | + 'created_at', |
|
11 | + 'updated_at' |
|
12 | + ]; |
|
13 | 13 | |
14 | 14 | } |
15 | 15 | \ No newline at end of file |
@@ -9,11 +9,11 @@ |
||
9 | 9 | */ |
10 | 10 | class Dom |
11 | 11 | { |
12 | - /** |
|
13 | - * @param $node |
|
14 | - * @return string |
|
15 | - */ |
|
16 | - public static function getHtml($node) { |
|
12 | + /** |
|
13 | + * @param $node |
|
14 | + * @return string |
|
15 | + */ |
|
16 | + public static function getHtml($node) { |
|
17 | 17 | $innerHTML= ''; |
18 | 18 | $children = $node->childNodes; |
19 | 19 | foreach ($children as $child) { |
@@ -9,24 +9,24 @@ |
||
9 | 9 | */ |
10 | 10 | class RegExp |
11 | 11 | { |
12 | - /** |
|
13 | - * @param $regexp |
|
14 | - * @param $target |
|
15 | - * @return null |
|
16 | - */ |
|
17 | - public static function getFirstMatch($regexp, $target) |
|
12 | + /** |
|
13 | + * @param $regexp |
|
14 | + * @param $target |
|
15 | + * @return null |
|
16 | + */ |
|
17 | + public static function getFirstMatch($regexp, $target) |
|
18 | 18 | { |
19 | 19 | preg_match_all($regexp, $target, $matches); |
20 | 20 | $match = array_key_exists(0,$matches[1]) ? $matches[1][0] : null; |
21 | 21 | return $match; |
22 | 22 | } |
23 | 23 | |
24 | - /** |
|
25 | - * @param $regexp |
|
26 | - * @param $target |
|
27 | - * @return null |
|
28 | - */ |
|
29 | - public static function getAllMatch($regexp, $target) |
|
24 | + /** |
|
25 | + * @param $regexp |
|
26 | + * @param $target |
|
27 | + * @return null |
|
28 | + */ |
|
29 | + public static function getAllMatch($regexp, $target) |
|
30 | 30 | { |
31 | 31 | $matches = null; |
32 | 32 | preg_match_all($regexp, $target, $matches); |
@@ -10,11 +10,11 @@ |
||
10 | 10 | class TextFormatter |
11 | 11 | { |
12 | 12 | |
13 | - /** |
|
14 | - * @param $currencyString |
|
15 | - * @return float |
|
16 | - */ |
|
17 | - public static function currencyStringToFloat($currencyString){ |
|
13 | + /** |
|
14 | + * @param $currencyString |
|
15 | + * @return float |
|
16 | + */ |
|
17 | + public static function currencyStringToFloat($currencyString){ |
|
18 | 18 | //currency is always in this format € 550 |
19 | 19 | |
20 | 20 | return floatval( |
@@ -4,39 +4,39 @@ |
||
4 | 4 | 'modules' => [ |
5 | 5 | "4-4-2" => [ |
6 | 6 | 'roles'=>[1,1,2,1,1,2,1,0,2,0], |
7 | - 'character' => 2 |
|
7 | + 'character' => 2 |
|
8 | 8 | ], |
9 | 9 | "4-3-3" => [ |
10 | 10 | 'roles'=>[1,1,2,1,0,3,0,1,1,1], |
11 | - 'character' => 1 |
|
11 | + 'character' => 1 |
|
12 | 12 | ], |
13 | 13 | "4-5-1" => [ |
14 | 14 | 'roles'=>[1,1,2,1,1,3,1,0,1,0], |
15 | - 'character' => 4 |
|
15 | + 'character' => 4 |
|
16 | 16 | ], |
17 | 17 | "4-2-4" => [ |
18 | 18 | 'roles'=>[1,1,2,1,0,2,0,1,2,1], |
19 | - 'character' => 1 |
|
19 | + 'character' => 1 |
|
20 | 20 | ], |
21 | 21 | "3-5-2" => [ |
22 | 22 | 'roles'=>[1,0,3,0,1,3,1,0,2,0], |
23 | - 'character' => 2 |
|
23 | + 'character' => 2 |
|
24 | 24 | ], |
25 | 25 | "3-4-3" => [ |
26 | 26 | 'roles'=>[1,0,3,0,1,2,1,1,1,1], |
27 | - 'character' => 1 |
|
27 | + 'character' => 1 |
|
28 | 28 | ], |
29 | 29 | "3-3-4" => [ |
30 | 30 | 'roles'=>[1,0,3,0,0,3,0,1,2,1], |
31 | - 'character' => 1 |
|
31 | + 'character' => 1 |
|
32 | 32 | ], |
33 | 33 | "5-4-1" => [ |
34 | 34 | 'roles'=>[1,1,3,1,1,2,1,0,1,0], |
35 | - 'character' => 4 |
|
35 | + 'character' => 4 |
|
36 | 36 | ], |
37 | 37 | "5-3-2" => [ |
38 | 38 | 'roles'=>[1,1,3,1,0,3,0,0,2,0], |
39 | - 'character' => 4 |
|
39 | + 'character' => 4 |
|
40 | 40 | ] |
41 | 41 | ], |
42 | 42 | 'roles' => [ |
@@ -4,35 +4,35 @@ |
||
4 | 4 | |
5 | 5 | class CreateCoachesTable |
6 | 6 | { |
7 | - /** |
|
8 | - * Run the migrations. |
|
9 | - * |
|
10 | - * @return void |
|
11 | - */ |
|
12 | - public function run() |
|
13 | - { |
|
14 | - Capsule::schema()->dropIfExists('coaches'); |
|
15 | - Capsule::schema()->create('coaches', function ($table) { |
|
16 | - $table->increments('id'); |
|
17 | - $table->string('name'); |
|
18 | - $table->string('surname'); |
|
19 | - $table->tinyInteger('age'); |
|
20 | - $table->string('nationality',2); |
|
21 | - $table->float('skillAvg'); |
|
22 | - $table->float('wageReq'); |
|
23 | - $table->string('favouriteModule',10); |
|
24 | - $table->integer('team_id')->nullable(); |
|
25 | - $table->timestamps(); |
|
26 | - }); |
|
27 | - } |
|
7 | + /** |
|
8 | + * Run the migrations. |
|
9 | + * |
|
10 | + * @return void |
|
11 | + */ |
|
12 | + public function run() |
|
13 | + { |
|
14 | + Capsule::schema()->dropIfExists('coaches'); |
|
15 | + Capsule::schema()->create('coaches', function ($table) { |
|
16 | + $table->increments('id'); |
|
17 | + $table->string('name'); |
|
18 | + $table->string('surname'); |
|
19 | + $table->tinyInteger('age'); |
|
20 | + $table->string('nationality',2); |
|
21 | + $table->float('skillAvg'); |
|
22 | + $table->float('wageReq'); |
|
23 | + $table->string('favouriteModule',10); |
|
24 | + $table->integer('team_id')->nullable(); |
|
25 | + $table->timestamps(); |
|
26 | + }); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Reverse the migrations. |
|
31 | - * |
|
32 | - * @return void |
|
33 | - */ |
|
34 | - public function down() |
|
35 | - { |
|
36 | - Schema::drop('coaches'); |
|
37 | - } |
|
29 | + /** |
|
30 | + * Reverse the migrations. |
|
31 | + * |
|
32 | + * @return void |
|
33 | + */ |
|
34 | + public function down() |
|
35 | + { |
|
36 | + Schema::drop('coaches'); |
|
37 | + } |
|
38 | 38 | } |