From: foobar Date: Fri, 29 Mar 2002 15:15:16 +0000 (+0000) Subject: - MFH fixes for these tests. X-Git-Tag: php-4.2.0RC2~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c5a1a03db773e7c155549d037e41cdca130fc72;p=php - MFH fixes for these tests. --- diff --git a/ext/standard/tests/aggregation/aggregate.lib.php b/ext/standard/tests/aggregation/aggregate.lib.php deleted file mode 100644 index 3799285f75..0000000000 --- a/ext/standard/tests/aggregation/aggregate.lib.php +++ /dev/null @@ -1,65 +0,0 @@ - PHP_VERSION); - var $our_prop = '****'; - var $_priv_prop = null; - - function helper() - { - print "just trying to help\n"; - } - - function do_this() - { - print "I'm helping!\n"; - } - - function do_that() - { - print "I'm aggregating!\n"; - } - - function just_another_method() - { - print "yep, that's me\n"; - } - - function _private() - { - print "Don't touch me!\n"; - } - - function __wakeup() - { - } -} - -class mixin { - var $simple_prop = true; - var $mix = true; - - function mix_it() - { - print "mixing\n"; - } -} - -class moby { - function mix_it() - { - print "I'm redundant!\n"; - } -} - -?> diff --git a/ext/standard/tests/aggregation/aggregate.phpt b/ext/standard/tests/aggregation/aggregate.phpt index 82afb16f70..161afcda68 100644 --- a/ext/standard/tests/aggregation/aggregate.phpt +++ b/ext/standard/tests/aggregation/aggregate.phpt @@ -4,7 +4,7 @@ aggregating everything --GET-- --FILE--