summaryrefslogtreecommitdiff
path: root/Examples/php/class/runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/php/class/runme.php')
-rw-r--r--Examples/php/class/runme.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/php/class/runme.php b/Examples/php/class/runme.php
index 12b686052..99c253b46 100644
--- a/Examples/php/class/runme.php
+++ b/Examples/php/class/runme.php
@@ -14,7 +14,7 @@ print " Created square\n";
# ----- Access a static member -----
-print "\nA total of " . Shape::get_nshapes() . " shapes were created\n";
+print "\nA total of " . Shape::nshapes() . " shapes were created\n";
# ----- Member data access -----
@@ -54,7 +54,7 @@ $s = NULL;
# the square.
$o = NULL;
-print Shape::get_nshapes() . " shapes remain\n";
+print Shape::nshapes() . " shapes remain\n";
print "Goodbye\n";
?>