request = $this->request->withParsedBody([ 'testId' => $testId, 'test2Id' => $testTwoId, ]); } /** * view method * * @param mixed $testId * @param mixed $testTwoId * @return void */ public function view($testId, $testTwoId): void { $this->request = $this->request->withParsedBody([ 'testId' => $testId, 'test2Id' => $testTwoId, ]); } /** * @param mixed $passed */ public function reflection($passed, Table $table) { } /** * @return \Cake\Http\Response */ public function returner() { return $this->response->withStringBody('I am from the controller.'); } /** * @return \Cake\Http\Response */ public function willCauseException(): string { return ''; } // phpcs:disable protected function protected_m() { } private function private_m() { } public function _hidden() { } // phpcs:enable public function admin_add(): void { } }