15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
require "arrays_scope.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();
|