1 | <?php |
||
14 | class AppController extends Controller |
||
15 | { |
||
16 | public function registerUserAction(RegisterUserRequest $request) |
||
20 | |||
21 | public function registerUserCustomAction(ExtendedRegisterUserRequest $request) |
||
25 | |||
26 | public function withErrorResponseAction(ResponseProvidingRequest $request) |
||
30 | |||
31 | public function contextDependingRequestAction(ContextDependingRequest $request) |
||
35 | |||
36 | public function noCustomRequestAction($foo = '') |
||
40 | |||
41 | public function validationResultsAction(RegisterUserRequest $request, ConstraintViolationList $errors) |
||
45 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.