Fix to work with PHP5 wrappers.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12047 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2010-05-25 06:24:03 +00:00
commit 744bfd6118

View file

@ -10,9 +10,9 @@ require("example.php");
print "Creating some objects:\n";
$c = new Circle(10);
print " Created circle $c\n";
print " Created circle \$c\n";
$s = new Square(10);
print " Created square $s\n";
print " Created square \$s\n";
# ----- Create the ShapeContainer ----