@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('xapi_recipes', function (Blueprint $table) { |
|
16 | + Schema::create('xapi_recipes', function(Blueprint $table) { |
|
17 | 17 | $table->bigIncrements('id'); |
18 | 18 | $table->json('statement'); |
19 | 19 | $table->enum('status', Statement::$statuses)->default(Statement::STATUS_INACTIVE); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('xapi_statements', function (Blueprint $table) { |
|
16 | + Schema::create('xapi_statements', function(Blueprint $table) { |
|
17 | 17 | $table->bigIncrements('id'); |
18 | 18 | $table->json('statement'); |
19 | 19 | $table->enum('status', Statement::$statuses)->default(Statement::STATUS_INACTIVE); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('learning_locker', function (Blueprint $table) { |
|
16 | + Schema::create('learning_locker', function(Blueprint $table) { |
|
17 | 17 | $table->bigIncrements('id'); |
18 | 18 | $table->unsignedInteger('org_id'); |
19 | 19 | $table->string('url'); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | |
14 | -Route::group(['prefix' => 'laralocker'], function () { |
|
14 | +Route::group([ 'prefix' => 'laralocker' ], function() { |
|
15 | 15 | |
16 | 16 | $controller_namespace = "\Ijeffro\Laralocker\Http\Controllers\\"; |
17 | 17 |