/**
  * Autogenerated Proxy Method
  * @param \TYPO3\Flow\Mvc\RequestInterface $request The request object
  * @param \TYPO3\Flow\Mvc\ResponseInterface $response The response, modified by this handler
  * @return void
  * @throws \TYPO3\Flow\Mvc\Exception\UnsupportedRequestTypeException
  */
 public function processRequest(\TYPO3\Flow\Mvc\RequestInterface $request, \TYPO3\Flow\Mvc\ResponseInterface $response)
 {
     // FIXME this can be removed again once Doctrine is fixed (see fixMethodsAndAdvicesArrayForDoctrineProxiesCode())
     $this->Flow_Aop_Proxy_fixMethodsAndAdvicesArrayForDoctrineProxies();
     if (isset($this->Flow_Aop_Proxy_methodIsInAdviceMode['processRequest'])) {
         $result = parent::processRequest($request, $response);
     } else {
         $this->Flow_Aop_Proxy_methodIsInAdviceMode['processRequest'] = TRUE;
         try {
             $methodArguments = array();
             $methodArguments['request'] = $request;
             $methodArguments['response'] = $response;
             $adviceChains = $this->Flow_Aop_Proxy_getAdviceChains('processRequest');
             $adviceChain = $adviceChains['TYPO3\\Flow\\Aop\\Advice\\AroundAdvice'];
             $adviceChain->rewind();
             $joinPoint = new \TYPO3\Flow\Aop\JoinPoint($this, 'SKL\\Post\\Controller\\CategoryController', 'processRequest', $methodArguments, $adviceChain);
             $result = $adviceChain->proceed($joinPoint);
             $methodArguments = $joinPoint->getMethodArguments();
         } catch (\Exception $e) {
             unset($this->Flow_Aop_Proxy_methodIsInAdviceMode['processRequest']);
             throw $e;
         }
         unset($this->Flow_Aop_Proxy_methodIsInAdviceMode['processRequest']);
     }
     return $result;
 }