fork download
  1. <?php
  2.  
  3. class AbstractQuestion
  4. {
  5. public $text;
  6. public $rightAnswer;
  7. }
  8.  
  9. class ChoiceQuestion extends abstractQuestion
  10. {
  11. public $answers = array();
  12. }
  13. class NumberQuestion extends abstractQuestion
  14. {
  15. public $deviation;
  16. }
  17.  
  18. ?>
Success #stdin #stdout 0.02s 23424KB
stdin
Standard input is empty
stdout
Standard output is empty