cleaned up the code

This commit is contained in:
2019-09-24 17:02:26 +02:00
parent bf27d735fe
commit 984d44ac75
4 changed files with 30 additions and 27 deletions

View File

@@ -8,6 +8,15 @@ class Board {
$this->name = $name;
$this->permLevel = $permLevel;
}
function getId(){
return $this->id;
}
function getName(){
return $this->$name;
}
function getPermLevel(){
return $this->$permLevel;
}
}