Skip to content

Commit c088e1a

Browse files
committed
Apply fixes from StyleCI
1 parent b542bab commit c088e1a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Geo6.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private function executeQuery(string $url): \stdClass
298298
*
299299
* @return array
300300
*/
301-
private function getGeo6Token(string $path) : array
301+
private function getGeo6Token(string $path): array
302302
{
303303
$time = time();
304304

@@ -323,7 +323,7 @@ private function getGeo6Token(string $path) : array
323323
*
324324
* @return string
325325
*/
326-
private function getJWT() : string
326+
private function getJWT(): string
327327
{
328328
$algorithmManager = AlgorithmManager::create([
329329
new HS512(),
@@ -366,7 +366,7 @@ private function getJWT() : string
366366
*
367367
* @return array
368368
*/
369-
private static function extractComponents(array $components, string $language) : array
369+
private static function extractComponents(array $components, string $language): array
370370
{
371371
if (in_array($language, ['fr', 'nl'])) {
372372
foreach ($components as $component) {
@@ -452,7 +452,7 @@ private static function extractComponents(array $components, string $language) :
452452
*
453453
* @return Address
454454
*/
455-
private static function buildAddress(string $provider, array $components, array $coordinates) : Address
455+
private static function buildAddress(string $provider, array $components, array $coordinates): Address
456456
{
457457
$country = $components['country'];
458458
$countryCode = $components['countrycode'];

0 commit comments

Comments
 (0)