当前位置: 首页>>代码示例>>PHP>>正文


PHP ParamFetcherInterface::setController方法代码示例

本文整理汇总了PHP中FOS\RestBundle\Request\ParamFetcherInterface::setController方法的典型用法代码示例。如果您正苦于以下问题:PHP ParamFetcherInterface::setController方法的具体用法?PHP ParamFetcherInterface::setController怎么用?PHP ParamFetcherInterface::setController使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FOS\RestBundle\Request\ParamFetcherInterface的用法示例。


在下文中一共展示了ParamFetcherInterface::setController方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: paramFetcherOnKernelController

 /**
  * Core controller handler.
  *
  * @param FilterControllerEvent $event
  *
  * @throws \InvalidArgumentException
  */
 public function paramFetcherOnKernelController(FilterControllerEvent $event)
 {
     $request = $event->getRequest();
     if (!$request->attributes->get(FOSRestBundle::ZONE_ATTRIBUTE, true)) {
         return;
     }
     $controller = $event->getController();
     if (is_callable($controller) && method_exists($controller, '__invoke')) {
         $controller = [$controller, '__invoke'];
     }
     $this->paramFetcher->setController($controller);
     $attributeName = $this->getAttributeName($controller);
     $request->attributes->set($attributeName, $this->paramFetcher);
     if ($this->setParamsAsAttributes) {
         $params = $this->paramFetcher->all();
         foreach ($params as $name => $param) {
             if ($request->attributes->has($name) && null !== $request->attributes->get($name)) {
                 $msg = sprintf("ParamFetcher parameter conflicts with a path parameter '{$name}' for route '%s'", $request->attributes->get('_route'));
                 throw new \InvalidArgumentException($msg);
             }
             $request->attributes->set($name, $param);
         }
     }
 }
开发者ID:jarves,项目名称:jarves,代码行数:31,代码来源:ParamFetcherListener.php


注:本文中的FOS\RestBundle\Request\ParamFetcherInterface::setController方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。