for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace keeko\tools\generator\response;
use gossi\codegen\model\PhpClass;
use keeko\core\schema\ActionSchema;
use keeko\tools\generator\AbstractHtmlResponseGenerator;
class BlankHtmlResponseGenerator extends AbstractHtmlResponseGenerator {
protected function addMethods(PhpClass $class, ActionSchema $action) {
$action
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
// method: run(Request $request, $data = null)
$class->setMethod($this->generateRunMethod($this->twig->render('blank-run.twig')));
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.