| Total Complexity | 3 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 11 | class RouteProvider implements RouteProviderInterface | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var \Xervice\Service\Route\RouterCollection | ||
| 15 | */ | ||
| 16 | private $routeCollection; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * RouteProvider constructor. | ||
| 20 | * | ||
| 21 | * @param \Xervice\Service\Route\RouterCollection $routeCollection | ||
| 22 | */ | ||
| 23 | public function __construct(RouterCollection $routeCollection) | ||
| 26 | } | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @param \Laravel\Lumen\Application $app | ||
| 30 | */ | ||
| 31 | public function register(Application $app) | ||
| 38 | } |