Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\HttpFoundation; Chris@0: Chris@0: /** Chris@0: * RequestMatcherInterface is an interface for strategies to match a Request. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: interface RequestMatcherInterface Chris@0: { Chris@0: /** Chris@0: * Decides whether the rule(s) implemented by the strategy matches the supplied request. Chris@0: * Chris@0: * @return bool true if the request matches, false otherwise Chris@0: */ Chris@0: public function matches(Request $request); Chris@0: }