<?php
class Bar {
	static function getName() {
		return $this->name;
	}
}

print Bar::getName();
?>
