Initial Commit

This commit is contained in:
Daniel Mason 2016-12-30 18:16:13 +13:00
commit 391177596e
41 changed files with 1233 additions and 0 deletions

View file

@ -0,0 +1,31 @@
<?php
/**
* Created by PhpStorm.
* User: daniel
* Date: 12/30/16
* Time: 2:09 PM
*/
class Answer extends DataItem
{
public static function _getClass()
{
return "Answer";
}
public static function _getType()
{
return "answer";
}
public function getAnswer()
{
return $this->answerdata_content;
}
public function isCorrect()
{
return $this->answerdata_correct;
}
}