Skip to content

Commit de17b58

Browse files
committed
Fix indentations phpcs errors
1 parent 511af61 commit de17b58

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

features/bootstrap/SQLiteFeatureContext.php

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,19 +174,22 @@ public function theSqliteDatabaseContainsATestTableWithAlphanumericStringHashVal
174174
$this->connectToDatabase();
175175

176176
// Create a test table with hash values that look like scientific notation
177-
$this->db->exec("DROP TABLE IF EXISTS test_export_alphanumeric_string");
178-
$this->db->exec("
177+
$this->db->exec( 'DROP TABLE IF EXISTS test_export_alphanumeric_string' );
178+
$this->db->exec(
179+
'
179180
CREATE TABLE test_export_alphanumeric_string (
180181
id INTEGER PRIMARY KEY,
181182
hash_value TEXT
182183
)
183-
");
184+
'
185+
);
184186

185187
// Insert test data with values that might be mistaken for scientific notation
186-
$this->db->exec("
188+
$this->db->exec(
189+
"
187190
INSERT INTO test_export_alphanumeric_string (id, hash_value) VALUES
188191
(1, '123e99')
189-
");
192+
"
193+
);
190194
}
191-
192195
}

0 commit comments

Comments
 (0)