1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/ext/standard/tests/aggregation/aggregate.phpt
T

20 lines
270 B
PHP

--TEST--
aggregating everything
--FILE--
<?php
include "ext/standard/tests/aggregation/aggregate.lib";
$obj = new simple();
aggregate($obj, 'helper');
$obj->do_this();
$obj->do_that();
print $obj->our_prop;
?>
--EXPECT--
I'm alive!
I'm helping!
I'm aggregating!
****