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