<?php

class Base {
	static public $property = true;
	
	static public function basetest( ) {
		echo 'blah blah blah';
	}
}

