php-src/tests/classes/autoload_implements.p5c

11 lines
117 B
Plaintext
Executable File

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