for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SES;
use Title;
/**
* @license GNU GPL v2+
* @since 1.1
*
* @author mwjames
*/
class SignupFactory {
* @return FormPrinterHandler
public function newFormPrinterHandler() {
$form = Title::newFromText(
Settings::get( 'formName' ),
SF_NS_FORM
);
return new FormPrinterHandler(
$form,
$GLOBALS['sfgFormPrinter']
}
* @return UserAccountDataChecker
public function newUserAccountDataChecker() {
return new UserAccountDataChecker();