@@ -41,20 +41,20 @@ |
||
41 | 41 | |
42 | 42 | protected function setUpDatabase() |
43 | 43 | { |
44 | - $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function (Blueprint $table) { |
|
44 | + $this->app['db']->connection()->getSchemaBuilder()->create('dummies', function(Blueprint $table) { |
|
45 | 45 | $table->increments('id'); |
46 | 46 | $table->string('name'); |
47 | 47 | $table->integer('order_column'); |
48 | 48 | }); |
49 | 49 | |
50 | - collect(range(1, 20))->each(function (int $i) { |
|
50 | + collect(range(1, 20))->each(function(int $i) { |
|
51 | 51 | Dummy::create(['name' => $i]); |
52 | 52 | }); |
53 | 53 | } |
54 | 54 | |
55 | 55 | protected function setUpSoftDeletes() |
56 | 56 | { |
57 | - $this->app['db']->connection()->getSchemaBuilder()->table('dummies', function (Blueprint $table) { |
|
57 | + $this->app['db']->connection()->getSchemaBuilder()->table('dummies', function(Blueprint $table) { |
|
58 | 58 | $table->softDeletes(); |
59 | 59 | }); |
60 | 60 | } |