Исправил опечатку

This commit is contained in:
Artem Vasilev 2024-03-08 02:18:19 +03:00
parent 784c90b30c
commit 56715588c3

View File

@ -71,7 +71,7 @@ trait RevokedModelTrait
$revokedColumnName = $table->getColumnAlias('revoked'); $revokedColumnName = $table->getColumnAlias('revoked');
if (property_exists($table, $revokedColumnName) && $table->get($revokedColumnName, 1) == 0) { if (property_exists($table, $revokedColumnName) && $table->get($revokedColumnName, 1) == 0) {
unset($identifier[$i]); unset($identifiers[$i]);
} else { } else {
$pks[] = $table->get('id'); $pks[] = $table->get('id');
} }