ru_php/tests/classes/autoload_implements.inc

11 lines
132 B
PHP
Raw Permalink Normal View History

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