Beispiel #1
0
 function httpRouteHasRequestUri(route $route, self $requestUri)
 {
     $requestUri->ifStartWithRequestUri($this, function () use($route) {
         $route->httpRequestUriHasRequestDataAggregator($this, new request\data\aggregator\blackhole());
     });
     return $this;
 }
Beispiel #2
0
 function httpRouteHasRequestUri(route $route, request\uri $requestUri)
 {
     $route->httpRequestUriHasRequestDataAggregator($requestUri, new request\data\aggregator\blackhole());
     return $this;
 }