@@ -57,7 +57,7 @@ |
||
57 | 57 | protected static function defaultRandomStringGenerator() |
58 | 58 | { |
59 | 59 | //Mcrypt |
60 | - if (function_exists('mcrypt_create_iv') && version_compare( PHP_VERSION, '7.1', '<' )) { |
|
60 | + if (function_exists('mcrypt_create_iv') && version_compare(PHP_VERSION, '7.1', '<')) { |
|
61 | 61 | return new McryptRandomStringGenerator(); |
62 | 62 | } |
63 | 63 |
@@ -68,7 +68,7 @@ |
||
68 | 68 | */ |
69 | 69 | protected function buildUrl($endpoint = '', array $params = []) |
70 | 70 | { |
71 | - $queryParams = http_build_query($params,'','&'); |
|
71 | + $queryParams = http_build_query($params, '', '&'); |
|
72 | 72 | return static::BASE_URL . $endpoint . '?' . $queryParams; |
73 | 73 | } |
74 | 74 |