summaryrefslogtreecommitdiff
path: root/tests/classes/autoload_implements.p5c
blob: 55fcc3cd9f73e91bc5bef70ac79e14d57b0ac9be (plain)
1
2
3
4
5
6
7
8
9
10
<?php

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

?>