It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
14 lines
245 B
PHP
14 lines
245 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
check::functions(array('do_blah'));
|
|
check::classes(array('class_ignore','Bar','Boo','Far','Hoo'));
|
|
// No new vars
|
|
check::globals(array());
|
|
|
|
$bar=new bar();
|
|
do_blah($bar);
|
|
check::classparent($bar,"");
|
|
|
|
check::done();
|