Skip to content

Commit b838538

Browse files
committed
fixed warning Line exceeds 120 characters
1 parent a687dfa commit b838538

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/Helpers/Templater/ScalarTest.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,14 @@ public function providerTemplater()
5050
'INSERT INTO `table` VALUES ("str\"ing", "1", NULL, "3.5", "2.5", "28f7dc7206a1")',
5151
],
5252
'string-null' => [
53-
'INSERT INTO `table` VALUES (?string-null, ?string-null, ?string-null, ?string-null, ?string-null, ?string-null)',
53+
'INSERT INTO `table`'
54+
. ' VALUES (?string-null, ?string-null, ?string-null, ?string-null, ?string-null, ?string-null)',
5455
$data,
5556
'INSERT INTO `table` VALUES ("str\"ing", "1", NULL, "3.5", "2.5", "28f7dc7206a1")',
5657
],
5758
'full' => [
58-
'INSERT INTO `table` VALUES (?string, ?scalar-int, ?scalar-null, ?scalar-int, ?scalar-float, ?scalar-hex)',
59+
'INSERT INTO `table`'
60+
. ' VALUES (?string, ?scalar-int, ?scalar-null, ?scalar-int, ?scalar-float, ?scalar-hex)',
5961
$data,
6062
'INSERT INTO `table` VALUES ("str\"ing", 1, NULL, 3, 2.5, x\'28f7dc7206a1\')',
6163
],

0 commit comments

Comments
 (0)