aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/add_link_runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php/add_link_runme.php')
-rw-r--r--Examples/test-suite/php/add_link_runme.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Examples/test-suite/php/add_link_runme.php b/Examples/test-suite/php/add_link_runme.php
index 7523bd604..3e16fa1df 100644
--- a/Examples/test-suite/php/add_link_runme.php
+++ b/Examples/test-suite/php/add_link_runme.php
@@ -4,15 +4,15 @@ require "tests.php";
require "add_link.php";
// No new functions, except the flat functions
-check::functions(array(new_foo,foo_blah));
+check::functions(array('new_foo','foo_blah'));
-check::classes(array(Foo));
+check::classes(array('Foo'));
$foo=new foo();
-check::is_a($foo,foo);
+check::is_a($foo,'foo');
$foo_blah=$foo->blah();
-check::is_a($foo_blah,foo);
+check::is_a($foo_blah,'foo');
//fails, can't be called as a class method, should allow and make it nil?
//$class_foo_blah=foo::blah();