Created Survey object

This commit is contained in:
Pierre
2018-04-21 20:07:47 +02:00
parent e849b84172
commit b00e401ada
2 changed files with 88 additions and 0 deletions

View File

@ -10,6 +10,13 @@ class BaseUniqueObject {
//Private fields
private $id = 0;
/**
* Public constructor
*/
public function __construct(){
$this->id = 0;
}
//Set and get object ID
public function set_id(int $id){
$this->id = $id;