for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace keeko\tools\generator\responder;
use gossi\codegen\model\PhpClass;
use keeko\framework\schema\ActionSchema;
class SkeletonHtmlResponderGenerator extends AbstractHtmlResponderGenerator {
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) : Response
$class->setMethod($this->generateRunMethod($this->twig->render('skeleton-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.