Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bessudnov committed Nov 24, 2020
1 parent 6c81682 commit f2e0abc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AmoCRM/Client/AmoCRMApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ class AmoCRMApiClient
* AmoCRMApiClient constructor.
* @param string $clientId
* @param string $clientSecret
* @param string $redirectUri
* @param null|string $redirectUri
*/
public function __construct(string $clientId, string $clientSecret, string $redirectUri)
public function __construct(string $clientId, string $clientSecret, ?string $redirectUri)
{
$this->oAuthClient = new AmoCRMOAuth($clientId, $clientSecret, $redirectUri);
}
Expand Down

0 comments on commit f2e0abc

Please sign in to comment.