Viewing File: /opt/alt/tests/alt-php84-pecl-xhprof-tideways_5.0.4-2.el8/tests/xhprof_004.phpt

--TEST--
Tideways: Closure and Anonymous Classes
--FILE--
<?php

include_once dirname(__FILE__).'/common.php';

tideways_xhprof_enable();

$foo = function() {};
$foo();

$bar = new class () {
    public function baz() {
    }
};
$bar->baz();

$output = tideways_xhprof_disable();

print_canonical($output);

?>
--EXPECTF--
class@anonymous::baz                    : ct=       1; wt=*;
main()                                  : ct=       1; wt=*;
tideways_xhprof_disable                 : ct=       1; wt=*;
tideways_xhprof_disable==>tideways_xhprof_disable@1: ct=       1; wt=*;
{closure:%s:%d}: ct=       1; wt=*;
Back to Directory File Manager
<