php-src/tests/classes/autoload_implements.p5c
2004-09-26 18:16:33 +00:00

10 lines
No EOL
116 B
Text
Executable file

<?php
class autoload_implements implements autoload_interface {
function testFunction()
{
return true;
}
}
?>