import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-class_object / get_class_methods_basic_003.php.expectf
bloba7b8ca79f834ea60fa23e22f2aaec918b5bc38d7
1 Accessing I from global scope:
2 array(1) {
3   [0]=>
4   string(4) "pubI"
6 Accessing C from global scope:
7 array(3) {
8   [0]=>
9   string(4) "pubI"
10   [1]=>
11   string(4) "pubC"
12   [2]=>
13   string(9) "testFromC"
15 Accessing I from C:
16 array(1) {
17   [0]=>
18   string(4) "pubI"
20 Accessing C from C:
21 array(5) {
22   [0]=>
23   string(4) "pubI"
24   [1]=>
25   string(5) "privC"
26   [2]=>
27   string(5) "protC"
28   [3]=>
29   string(4) "pubC"
30   [4]=>
31   string(9) "testFromC"
33 Done