PageRenderTime 50ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
PHP | 12 lines | 8 code | 4 blank | 0 comment | 0 complexity | 899eaaccb89250c7cbd796e8e538e091 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 "abstract_inherit_ok.php";
  4. check::classes(array(Foo,Spam));
  5. $spam=new Spam();
  6. check::equal(0,$spam->blah(),"spam object method");
  7. check::done();
  8. ?>