23 lines
480 B
PHP
23 lines
480 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\MigrationMoodle\Task;
|
|
|
|
/**
|
|
* Class UserQuestionAttemptsGapselectTask.
|
|
*
|
|
* @package Chamilo\PluginBundle\MigrationMoodle\Task
|
|
*/
|
|
class UserQuestionAttemptsGapselectTask extends UserQuestionAttemptsTask
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getExtractConfiguration()
|
|
{
|
|
$this->questionType = 'gapselect';
|
|
|
|
return parent::getExtractConfiguration();
|
|
}
|
|
}
|