php-src/ext/standard/tests/serialize/autoload_implements.p5c

10 lines
116 B
Plaintext
Raw Normal View History

2004-09-26 18:28:07 +00:00
<?php
class autoload_implements implements autoload_interface {
function testFunction()
{
return true;
}
}
?>