We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6abb363 commit 566c065Copy full SHA for 566c065
src/SQLLoader.php
@@ -70,7 +70,7 @@ public function into(
70
array $formatOptions = [],
71
?string $when = null,
72
bool $csv = false,
73
- bool $withEmbedded = false,
+ bool $withEmbedded = true,
74
): static {
75
if (! $columns && $this->defaultColumns) {
76
$columns = $this->createColumnsFromHeaders($table, $this->defaultColumns);
src/TableDefinition.php
@@ -17,7 +17,7 @@ public function __construct(
17
public array $formatOptions = [],
18
public ?string $when = null,
19
public bool $csv = false,
20
- public bool $withEmbedded = false,
+ public bool $withEmbedded = true,
21
) {}
22
23
public function __toString(): string
0 commit comments