<?php

class Foo
{
	private function __get($name)
	{
		
	}
	
	private function __set($name, $value)
	{
		
	}
}

$foo = new Foo;
$foo->bar = 'baz';