@Override
public Set<FileObject> extend(PhpModule phpModule) throws ExtendingException {
boolean isSuccess = false;
try {
YiiScript script = YiiScript.forPhpModule(phpModule, true, true);
isSuccess = script.initProject(phpModule);
} catch (InvalidPhpExecutableException ex) {
Exceptions.printStackTrace(ex);
}
boolean usePHPUnit = panel.usePHPUnit();
HashSet<FileObject> files = new HashSet<FileObject>();