@@ -196,7 +196,7 @@ |
||
| 196 | 196 | private function getTreeSize($fighterCount, $groupSize) |
| 197 | 197 | { |
| 198 | 198 | $square = collect([1, 2, 4, 8, 16, 32, 64]); |
| 199 | - $squareMultiplied = $square->map(function ($item, $key) use ($groupSize) { |
|
| 199 | + $squareMultiplied = $square->map(function($item, $key) use ($groupSize) { |
|
| 200 | 200 | return $item * $groupSize; |
| 201 | 201 | }); |
| 202 | 202 | |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('fighters_groups', function (Blueprint $table) { |
|
| 16 | + Schema::create('fighters_groups', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->tinyInteger('short_id'); |
| 19 | 19 | $table->integer('championship_id')->unsigned()->index(); |