Skip to content

Commit

Permalink
Fixed the method getUrlPath, replacement APP_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
moura137 committed Jul 1, 2016
1 parent a0a9c76 commit a35d5d5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Models/Requests/BalancerUrlRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ public function getUrlPath()
{
$pathUrl = strtr(
$this->getOrtcConfig()->getBalancerUrl(),
'{APP_KEY}',
$this->getOrtcConfig()->getApplicationKey()
[
'{APP_KEY}' => $this->getOrtcConfig()->getApplicationKey(),
]
);

return $pathUrl;
Expand Down

0 comments on commit a35d5d5

Please sign in to comment.