1 Star 0 Fork 0

mngogo / http-foundation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
RequestMatcherInterface.php 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nicolas Grekas 提交于 2017-10-22 09:42 . [DI] minor docblock fixes
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation;
/**
* RequestMatcherInterface is an interface for strategies to match a Request.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
interface RequestMatcherInterface
{
/**
* Decides whether the rule(s) implemented by the strategy matches the supplied request.
*
* @return bool true if the request matches, false otherwise
*/
public function matches(Request $request);
}
1
https://gitee.com/mngogo/http-foundation.git
git@gitee.com:mngogo/http-foundation.git
mngogo
http-foundation
http-foundation
master

搜索帮助