@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function up() |
| 13 | 13 | { |
| 14 | - Schema::create('binary_roles', function (Blueprint $table) { |
|
| 14 | + Schema::create('binary_roles', function(Blueprint $table) { |
|
| 15 | 15 | $table->binary('role_id'); |
| 16 | 16 | $table->string('name'); |
| 17 | 17 | }); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | protected function getEnvironmentSetUp($app) |
| 14 | 14 | { |
| 15 | 15 | $app['config']->set('database.default', 'testing'); |
| 16 | - $app['router']->get('binary-users/{binaryUser}', function (TestBinaryUserHex $binaryUser) { |
|
| 16 | + $app['router']->get('binary-users/{binaryUser}', function(TestBinaryUserHex $binaryUser) { |
|
| 17 | 17 | return $binaryUser->toJson(); |
| 18 | 18 | })->middleware(SubstituteBindings::class); |
| 19 | 19 | } |