Skip to content

Commit dd412c5

Browse files
committed
Add type cast to force integer for mysliq binding
1 parent b4544b5 commit dd412c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/AI/AIErrorCorrectionJob.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,10 @@ private function queueErrorForAnalysis($error, $config)
344344
";
345345

346346
$params = [
347-
$error['id'],
347+
(int)$error['id'],
348348
$signature,
349-
$config['application'],
350-
$config['kyte_account'],
349+
(int)$config['application'],
350+
(int)$config['kyte_account'],
351351
$controllerInfo['controller_id'],
352352
$controllerInfo['controller_name'],
353353
$controllerInfo['function_id'],

0 commit comments

Comments
 (0)