summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests/bug_73087.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_firebird/tests/bug_73087.phpt')
-rw-r--r--ext/pdo_firebird/tests/bug_73087.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/pdo_firebird/tests/bug_73087.phpt b/ext/pdo_firebird/tests/bug_73087.phpt
index b676293e44..cd3d90137e 100644
--- a/ext/pdo_firebird/tests/bug_73087.phpt
+++ b/ext/pdo_firebird/tests/bug_73087.phpt
@@ -10,13 +10,13 @@ require 'testdb.inc';
$dbh->exec('create table atable (id integer not null, content blob sub_type 1 segment size 80)');
$S = $dbh->prepare('insert into atable (id, content) values (:id, :content)');
for ($I = 1; $I < 10; $I++) {
- $Params = [
- 'id' => $I,
- 'content' => base64_encode(random_bytes(10))
- ];
- foreach ($Params as $Param => $Value)
- $S->bindValue($Param, $Value);
- $S->execute();
+ $Params = [
+ 'id' => $I,
+ 'content' => base64_encode(random_bytes(10))
+ ];
+ foreach ($Params as $Param => $Value)
+ $S->bindValue($Param, $Value);
+ $S->execute();
}
unset($S);
unset($dbh);