diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2004-02-12 14:44:58 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2004-02-12 14:44:58 +0000 |
commit | 92f355d73307d56bc8eefb32b2ef5bf29c3e75f7 (patch) | |
tree | 42a9685b829c95ce1759e0128d60da8a1741b252 /README.PHP4-TO-PHP5-THIN-CHANGES | |
parent | 1526710ce17d6dcc72a738a4e3c0ffb8b540d46d (diff) | |
download | php-git-92f355d73307d56bc8eefb32b2ef5bf29c3e75f7.tar.gz |
making sure that the provided examples actualy work (or at least do not
generate no parse errors) unless they are really expected to fail
Diffstat (limited to 'README.PHP4-TO-PHP5-THIN-CHANGES')
-rw-r--r-- | README.PHP4-TO-PHP5-THIN-CHANGES | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.PHP4-TO-PHP5-THIN-CHANGES b/README.PHP4-TO-PHP5-THIN-CHANGES index 909e3bf6a8..9661906925 100644 --- a/README.PHP4-TO-PHP5-THIN-CHANGES +++ b/README.PHP4-TO-PHP5-THIN-CHANGES @@ -56,10 +56,10 @@ 8. Classes must be declared before used: <?php $test = new fubar(); - $test->echo(); + $test->barfu(); class fubar { - function echo() { + function barfu() { echo 'fubar'; } } |