for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SES;
use Parser;
/**
* @license GNU GPL v2+
* @since 1.0
*
* @author mwjames
*/
class ParserFunctionFactory {
* @return array
public function newSignupFieldsParserFunctionDefinition() {
$signupfieldsParserDefinition = function( $parser ) {
$parser
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$signupFieldsParserFunction = new SignupFieldsParserFunction(
new UserFieldsCreateTemplate()
);
return $signupFieldsParserFunction->parse( func_get_args() );
};
return array( 'signupfields', $signupfieldsParserDefinition, 0 );
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.