fixed reference syntax mistake

This commit is contained in:
Andreas 2019-09-24 17:03:57 +02:00
parent 984d44ac75
commit 8337bf9693

View File

@ -12,10 +12,10 @@ class Board {
return $this->id; return $this->id;
} }
function getName(){ function getName(){
return $this->$name; return $this->name;
} }
function getPermLevel(){ function getPermLevel(){
return $this->$permLevel; return $this->permLevel;
} }
} }