Cannot Access Empty Property in PHP
You appear to have an error on line 21. Change:
$this->$password
to:
$this->password
For reference, this is is known as a variable variable. Example:
$a = 'b';
$b = 'I am a variable variable';
echo $$a; // equivalent to `echo $b;` prints 'I am a variable variable'