for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kambo\Router\Route;
use Kambo\Router\Route\Route;
/**
* Build instance of the route
*
* @author Bohuslav Simek <[email protected]>
* @license Apache-2.0
* @package Kambo\Router\Route
*/
class RouteBuilder
{
public function build($method, $route, $handler)
return new Route($method, $route, $handler);
}