@@ -41,13 +41,13 @@ |
||
| 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 | } |