예제 #1
0
파일: TokenFactory.php 프로젝트: payum/core
 /**
  * {@inheritDoc}
  */
 protected function generateUrl($path, array $parameters = [])
 {
     $newPath = $this->baseUrl->path->withTrailingSlash() . $path;
     $uri = $this->baseUrl->withPath($newPath);
     $uri = $this->addQueryToUri($uri, $parameters);
     return (string) $uri;
 }