MBHFramework/mbh-rest

View on GitHub
Mbh/Interfaces/RouteParserInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * MBHFramework
 *
 * @link      https://github.com/MBHFramework/mbh-framework
 * @copyright Copyright (c) 2017 Ulises Jeremias Cornejo Fandos
 * @license   https://github.com/MBHFramework/mbh-framework/blob/master/LICENSE (MIT License)
 */

namespace Mbh\Interfaces;

/**
 * @author Ulises Jeremias Cornejo Fandos
 */
interface RouteParserInterface
{
    public function handle(RouteInterface $route);
}