mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-08 12:00:31 +08:00
20 lines
339 B
PHP
20 lines
339 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Security;
|
||
|
|
||
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
|
||
|
/**
|
||
|
* Interface RouteMatcherInterface
|
||
|
* @package App\Security
|
||
|
*/
|
||
|
interface RouteMatcherInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param Request $request
|
||
|
* @param array $routes
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function match(Request $request, array $routes);
|
||
|
}
|