PageRenderTime 40ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/trunk/Examples/test-suite/php/class_ignore_runme.php

#
PHP | 16 lines | 11 code | 4 blank | 1 comment | 0 complexity | 70012c5cd0cadf0262e4e9e8996696e9 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. <?php
  2. require "tests.php";
  3. require "class_ignore.php";
  4. check::functions(array(do_blah,new_bar,bar_blah,new_boo,boo_away,new_far,new_hoo));
  5. check::classes(array(class_ignore,Bar,Boo,Far,Hoo));
  6. // No new vars
  7. check::globals(array());
  8. $bar=new bar();
  9. do_blah($bar);
  10. check::classparent($bar,"");
  11. check::done();
  12. ?>