1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 07:06:45 +02:00

Plugins: Compatibility with PHP 5

This commit is contained in:
Jakub Vrana
2025-04-08 13:14:32 +02:00
parent e601a3d8ce
commit 6da8bb670a
7 changed files with 7 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ class AdminerSlugify extends Adminer\Plugin {
* @param string $from find these characters ...
* @param string $to ... and replace them by these
*/
function __construct(string $from = 'áčďéěíňóřšťúůýž', string $to = 'acdeeinorstuuyz') {
function __construct($from = 'áčďéěíňóřšťúůýž', $to = 'acdeeinorstuuyz') {
$this->from = $from;
$this->to = $to;
}