summaryrefslogtreecommitdiff
path: root/tests/classes/autoload_implements.inc
blob: e5f19c06803ac7ed15cc193f827f9ee0b73a530c (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class autoload_implements implements autoload_interface {
    function testFunction()
    {
        return true;
    }
}

?>