autoload_implements.p5c   [plain text]


<?php

class autoload_implements implements autoload_interface {
	function testFunction()
	{
		return true;
	}
}

?>