Completed
Push — master ( 927604...3b9fea )
by Julien
01:56
created
src/models/ChampionshipSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     public static function createOrUpdate(Request $request, Championship $championship): ChampionshipSettings
64 64
     {
65 65
         $request->request->add(['championship_id' => $championship->id]);
66
-        $arrSettings = $request->except('_token', 'numFighters','isTeam');
66
+        $arrSettings = $request->except('_token', 'numFighters', 'isTeam');
67 67
         $settings = static::where(['championship_id' => $championship->id])->first();
68 68
         if ($settings == null) {
69 69
             $settings = new self();
Please login to merge, or discard this patch.
resources/views/tree/index.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 $fightingAreas = $setting->fightingAreas;
22 22
 $fights = $championship->fights;
23 23
 $numFighters = $numFighters ??  5;
24
-$isTeam = $isTeam ??  5;;
24
+$isTeam = $isTeam ??  5; ;
25 25
 ?>
26 26
 @include('kendo-tournaments::partials.errors')
27 27
 
Please login to merge, or discard this patch.
resources/views/partials/tree/brackets/lower_bracket.blade.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2
-$default_top1 =81;
3
-$default_top2 =132;
2
+$default_top1 = 81;
3
+$default_top2 = 132;
4 4
 
5
-$top1 = $default_top1 + ($numGroup-1) * 204;
6
-$top2 = $default_top2 + ($numGroup-1) * 204;
5
+$top1 = $default_top1 + ($numGroup - 1) * 204;
6
+$top2 = $default_top2 + ($numGroup - 1) * 204;
7 7
 
8
-$top = $default_top1 + ($numGroup-1) * 204;
8
+$top = $default_top1 + ($numGroup - 1) * 204;
9 9
 
10 10
 
11 11
 ?>
Please login to merge, or discard this patch.
resources/views/partials/tree/brackets/fight.blade.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2
-$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound-1)-1) * 51);
2
+$topOffset = ($numRound == 1 ? 0 : (pow(2, $numRound - 1) - 1) * 51);
3 3
 $top = \App\Bracket::getTopFight($numRound, $numFight) + $topOffset;
4 4
 
5 5
 $left = \App\Bracket::getLeftFight($numRound);
6
-if ($numRound== 3) dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset);
6
+if ($numRound == 3) dump(\App\Bracket::getTopFight($numRound, $numFight), $topOffset);
7 7
 ?>
8 8
 
9 9
 <div class="match-wrapper" style="top: {{ $top }}px; left: {{$left}}px; width: 150px;">
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,9 @@
 block discarded – undo
3 3
 $top = \App\Bracket::getTopFight($numRound, $numFight) + $topOffset;
4 4
 
5 5
 $left = \App\Bracket::getLeftFight($numRound);
6
-if ($numRound== 3) dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset);
6
+if ($numRound== 3) {
7
+    dump(\App\Bracket::getTopFight($numRound, $numFight),$topOffset);
8
+}
7 9
 ?>
8 10
 
9 11
 <div class="match-wrapper" style="top: {{ $top }}px; left: {{$left}}px; width: 150px;">
Please login to merge, or discard this patch.
resources/views/partials/tree/brackets/upper_bracket.blade.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2
-$default_top1 =30;
3
-$default_top2 =81;
2
+$default_top1 = 30;
3
+$default_top2 = 81;
4 4
 
5
-$top1 = $default_top1 + ($numGroup-1) * 204;
6
-$top2 = $default_top2 + ($numGroup-1) * 204;
5
+$top1 = $default_top1 + ($numGroup - 1) * 204;
6
+$top2 = $default_top2 + ($numGroup - 1) * 204;
7 7
 
8 8
 $default_left = 189;
9
-$left = $default_left * ($numRound-1);
9
+$left = $default_left * ($numRound - 1);
10 10
 
11 11
 
12 12
 ?>
Please login to merge, or discard this patch.
src/Models/Fighter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     public function getFullNameAttribute()
28 28
     {
29
-        if ($this instanceof Competitor){
29
+        if ($this instanceof Competitor) {
30 30
             return $this->getFullName();
31 31
         }
32 32
         return $this->name;
Please login to merge, or discard this patch.
database/factories/TeamFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Xoco70\KendoTournaments\Models\Team;
4
-$factory->define(Team::class, function (Faker\Generator $faker) {
4
+$factory->define(Team::class, function(Faker\Generator $faker) {
5 5
 
6 6
     return [
7 7
         'name' => $faker->name,
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000010_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->string('firstname');
Please login to merge, or discard this patch.
src/Models/DirectEliminationFight.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Xoco70\KendoTournaments\Models;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6
-use Illuminate\Support\Collection;
7
-
8 5
 class DirectEliminationFight extends Fight
9 6
 {
10 7
     public function __construct(Fight $fight = null)
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
 {
10 10
     public function __construct(Fight $fight = null)
11 11
     {
12
-        if ($fight!=null){
13
-            $this->id= $fight->id;
14
-            $this->short_id= $fight->short_id;
15
-            $this->fighters_group_id= $fight->fighters_group_id;
16
-            $this->c1= $fight->c1;
17
-            $this->c2= $fight->c2;
12
+        if ($fight != null) {
13
+            $this->id = $fight->id;
14
+            $this->short_id = $fight->short_id;
15
+            $this->fighters_group_id = $fight->fighters_group_id;
16
+            $this->c1 = $fight->c1;
17
+            $this->c2 = $fight->c2;
18 18
         }
19 19
     }
20 20
     /**
Please login to merge, or discard this patch.