11 lines
132 B
PHP
11 lines
132 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class autoload_implements implements autoload_interface {
|
||
|
|
function testFunction()
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|