aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/casts_runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php/casts_runme.php')
-rw-r--r--Examples/test-suite/php/casts_runme.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Examples/test-suite/php/casts_runme.php b/Examples/test-suite/php/casts_runme.php
index 10522dca4..a9623a328 100644
--- a/Examples/test-suite/php/casts_runme.php
+++ b/Examples/test-suite/php/casts_runme.php
@@ -4,13 +4,13 @@ require "tests.php";
require "casts.php";
// No new functions
-check::functions(array(new_a,a_hello,new_b));
+check::functions(array('new_a','a_hello','new_b'));
// No new classes
-check::classes(array(A,B));
+check::classes(array('A','B'));
// now new vars
check::globals(array());
-# Make sure $b inherites hello() from class A
+# Make sure $b inherits hello() from class A
$b=new B();
$b->hello();