Exemplo n.º 1
0
<?php

/**
 * Another Foo file used for testing
 */
$b = Foo::quark();
Exemplo n.º 2
0
<?php

/**
 * A simple test class
 */
class Foo
{
    function quark()
    {
    }
}
$f = new Foo();
$b = $f->quark();