Error :
Cannot access empty property in Test.php on line 90
Reason :
- You put a dollar sign in the wrong place on a member variable.
$this->$test = 8; // $test is wrong
Possible solution :
- Put your dollar sign in correct place.
$this->test = 8; // test is right>