File "RouteMatcherInterface.php"
Full Path: /var/www/html/back/vendor/knuckleswtf/scribe/src/Matching/RouteMatcherInterface.php
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Knuckles\Scribe\Matching;
interface RouteMatcherInterface
{
/**
* Resolve matched routes that should be documented.
*
* @param array $routeRules Route rules defined under the "routes" section in config
*
* @return MatchedRoute[]
*/
public function getRoutes(array $routeRules = []): array;
}