for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xervice\Web;
use Symfony\Component\HttpFoundation\Request;
use Xervice\Core\Facade\AbstractFacade;
/**
* @method \Xervice\Web\WebFactory getFactory()
*/
class WebFacade extends AbstractFacade
{
public function initWebRouting(): void
$this->getFactory()->createRouteProvider()->provideRoutings();
}
* @param string $url
*
* @throws \Xervice\Web\Business\Exception\WebExeption
public function executeUrl(string $url): void
$this->getFactory()->createExecutionProvider()->executeUrl($url);
* @param \Symfony\Component\HttpFoundation\Request $request
public function executeRequest(Request $request): void
$this->getFactory()->createExecutionProvider()->executeRequest($request);
public function execute(): void
$this->getFactory()->createExecutionProvider()->execute();