It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
9 lines
154 B
PHP
9 lines
154 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
check::classes(array('Foo_int'));
|
|
$foo_int=new foo_int(3);
|
|
check::is_a($foo_int,"foo_int","Made a foo_int");
|
|
|
|
check::done();
|