swig/Examples/test-suite/php/abstract_inherit_ok_runme.php
Olly Betts cadd97ac4f [php] Fix widespread use of bare strings in testsuite
These generate warnings with PHP 7.3, which will become errors in a
future version.
2019-02-08 15:32:30 +13:00

12 lines
191 B
PHP

<?php
require "tests.php";
require "abstract_inherit_ok.php";
check::classes(array('Foo','Spam'));
$spam=new Spam();
check::equal(0,$spam->blah(),"spam object method");
check::done();
?>