Skip to content

Commit

Permalink
Update URL constants visability
Browse files Browse the repository at this point in the history
  • Loading branch information
zadarma-github committed Jun 23, 2016
1 parent 088ed24 commit 46909e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Client

public function __construct($key, $secret, $isSandbox = false)
{
$this->_url = ($isSandbox) ? self::SANDBOX_URL : self::PROD_URL;
$this->_url = ($isSandbox) ? static::SANDBOX_URL : static::PROD_URL;
$this->_key = $key;
$this->_secret = $secret;
}
Expand Down

0 comments on commit 46909e6

Please sign in to comment.