At line 77:
private function __set($sPropertyName, $sPropertyValue) {
/* set properties */
if (!isset($this->aProperties)) {
$this->aProperties = array();
}
It must be public:
public function __set($sPropertyName, $sPropertyValue) {
/* set properties */
if (!isset($this->aProperties)) {
$this->aProperties = array();
}