MBHFramework/mbh-rest

View on GitHub
Mbh/Interfaces/RouteInterface.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;

use \Mbh\Interfaces\RouteParserInterface;

/**
 * @author Federico Ramón Gasquez
 */
interface RouteInterface
{
    public function checkIfMatch(RouteParserInterface $routeParser);

    public function run(RouteParserInterface $routeParser);
}