use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.
the class ZendJvmTestCase method newScope.
@Override
protected CompileScope newScope() {
CompileScope scope = super.newScope();
scope.registerExtension(new ZendExtension());
return scope;
}
use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.
the class GeneratorsTest method newScope.
@Override
protected CompileScope newScope() {
CompileScope scope = super.newScope();
scope.registerExtension(new ZendExtension());
return scope;
}
use of org.develnext.jphp.zend.ext.ZendExtension in project jphp by jphp-compiler.
the class ArgUnpackTest method newScope.
@Override
protected CompileScope newScope() {
CompileScope scope = super.newScope();
scope.registerExtension(new ZendExtension());
return scope;
}
Aggregations