Skip to content

Commit

Permalink
Merge pull request #236 from gabrielsch/patch-1
Browse files Browse the repository at this point in the history
Fixing docblock indentation
  • Loading branch information
alexbilbie committed Nov 3, 2014
2 parents 13cd0ca + b2514e3 commit b50f7ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/League/OAuth2/Server/Util/RedirectUri.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
*/
class RedirectUri
{
/**
* Generate a new redirect uri
* @param string $uri The base URI
* @param array $params The query string parameters
* @param string $queryDelimeter The query string delimeter (default: "?")
* @return string The updated URI
*/
/**
* Generate a new redirect uri
* @param string $uri The base URI
* @param array $params The query string parameters
* @param string $queryDelimeter The query string delimeter (default: "?")
* @return string The updated URI
*/
public static function make($uri, $params = array(), $queryDelimeter = '?')
{
$uri .= (strstr($uri, $queryDelimeter) === false) ? $queryDelimeter : '&';
return $uri.http_build_query($params);
}
}
}

0 comments on commit b50f7ce

Please sign in to comment.