mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 08:35:18 +00:00
Created Survey object
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user