Browse Source

fix data type expected

PHP-GTK3
yggverse 4 months ago
parent
commit
dc489e26cc
  1. 6
      src/Model/Database/Identity.php

6
src/Model/Database/Identity.php

@ -30,10 +30,10 @@ class Identity @@ -30,10 +30,10 @@ class Identity
}
public function add(
?string $crt,
?string $key,
string $crt,
string $key,
?string $name = null,
?int $time = null
?int $time = null
): int
{
$query = $this->_connection->prepare(

Loading…
Cancel
Save