Test Setup Failed
Branch master (6ec315)
by Phil™
04:55
created
database/migrations/2020_01_01_000000_create_xapi_recipes_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('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);
Please login to merge, or discard this patch.
database/migrations/2019_01_01_000000_create_xapi_statements_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('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);
Please login to merge, or discard this patch.
database/migrations/2019_01_01_000000_create_learning_locker_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('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');
Please login to merge, or discard this patch.
routes/laralocker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.