Skip to content

Commit bac4b62

Browse files
committed
fix
1 parent 05c2dbf commit bac4b62

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

src/Schema/Blueprint.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,15 @@ public function tokenList(string $column, TokenizerFunction $function, string $t
262262
])->invisible()->nullable();
263263
}
264264

265+
/**
266+
* @param string $table
267+
* @return InterleaveDefinition
268+
*/
269+
public function interleaveInParent(string $table): InterleaveDefinition
270+
{
271+
return $this->interleaveIn($table, true);
272+
}
273+
265274
/**
266275
* @param string $table
267276
* @param bool $parent
@@ -277,15 +286,6 @@ public function interleaveIn(string $table, bool $parent = false): InterleaveDef
277286
);
278287
}
279288

280-
/**
281-
* @param string $table
282-
* @return InterleaveDefinition
283-
*/
284-
public function interleaveInParent(string $table): InterleaveDefinition
285-
{
286-
return $this->interleaveIn($table, true);
287-
}
288-
289289
/**
290290
* @param string|list<string> $columns
291291
* @param string|null $name

src/Schema/Grammar.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,6 @@ protected function addInterleaveToTable(Blueprint $blueprint)
452452
}
453453
return $schema;
454454
}
455-
456455
return '';
457456
}
458457

0 commit comments

Comments
 (0)