1
0
Fork 0

Update HashidService.php

fix php 7.4 requirement, which causes the error `ERROR: Array and string offset access syntax with curly braces is deprecated {"userId":1,"exception":"[object] (ErrorException(code: 0): Array and string offset access syntax with curly braces is deprecated at /var/www/ap
p/Services/HashidService.php:24)`
This commit is contained in:
Strubbl 2020-07-20 23:22:16 +02:00 committed by GitHub
parent 1251c2c976
commit 8aa97dec0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ class HashidService {
$shortcode = '';
while($id) {
$id = ($id - ($r = $id % $base)) / $base;
$shortcode = $cmap{$r} . $shortcode;
$shortcode = $cmap[$r] . $shortcode;
};
return $shortcode;
});
@ -47,4 +47,4 @@ class HashidService {
return $id;
}
}
}