@ -7,13 +7,13 @@ class Test {
private $real_a = 2;
function __set($property, $value) {
if ($property = "a") {
if ($property == "a") {
$this->real_a = $value;
}
function __get($property) {
return $this->real_a;