for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Web;
use Xervice\Controller\Business\ResponseHandler\ControllerResponseHandler;
use Xervice\Web\Business\Executor\ResponseHandler\ResponseHandlerInterface;
use Xervice\Web\WebFactory as XerviceWebFactory;
class WebFactory extends XerviceWebFactory
{
/**
* @return \Xervice\Web\Business\Executor\ResponseHandler\ResponseHandlerInterface
*/
public function createResponseHandler(): ResponseHandlerInterface
return new ControllerResponseHandler();
}