Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion database/seeds/AddEssayFifteenSemanticsSeeder.php
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,6 +4,7 @@

class AddEssayFifteenSemanticsSeeder extends Seeder
{

/**
* Run the database seeds.
*
Expand DownExpand Up@@ -37,14 +38,15 @@ public function run()
}



/**
* Insert Dependent Libraries
* @param $h5pFibLibId
*/
private function insertDependentLibraries($h5pFibLibId)
{
//Preloaded Dependencies
$h5pQuestionParams = ['name' => "Question", "major_version" => 1, "minor_version" => 4];
$h5pQuestionParams = ['name' => "Question", "major_version" => 1, "minor_version" => 5];
$h5pQuestionLib = DB::table('h5p_libraries')->where($h5pQuestionParams)->first();
$h5pQuestionLibId = $h5pQuestionLib->id;

Expand Down