Passed
Push — master ( 753c29...63bf16 )
by Julien
17:54
created
src/TreeGen/TreeGen.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
database/migrations/2016_10_24_223706_create_FightersGroup_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.