You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
585 B
26 lines
585 B
<?php
|
|
|
|
namespace FORM_BusinessClass;
|
|
|
|
class CheckBoxQuestion extends BoxQuestion
|
|
{
|
|
/**
|
|
* @param array $possibleResponses
|
|
* @param string $content
|
|
* @param array $categories
|
|
*/
|
|
public function __construct(array $possibleResponses, string $content, array $categories)
|
|
{
|
|
parent::__construct($possibleResponses, $content, $categories);
|
|
}
|
|
|
|
public function responseStrategy()
|
|
{
|
|
// TODO: Implement responseStrategy() method.
|
|
}
|
|
|
|
public function printStrategy()
|
|
{
|
|
// TODO: Implement printStrategy() method.
|
|
}
|
|
} |