php-src/tests/classes/autoload_implements.inc
2020-02-03 22:52:20 +01:00

11 lines
132 B
PHP

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