Skip to content

Commit 68c1f56

Browse files
author
Stephan Wentz
committed
fix: Remove unnecessary final modifier in private method
1 parent 459347b commit 68c1f56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Schema/SchemaTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ final protected function fixtureFromNewConnection(
7373
/**
7474
* @internal
7575
*/
76-
final private function applySchema(SchemaBuilder $schemaBuilder, Connection $connection): void
76+
private function applySchema(SchemaBuilder $schemaBuilder, Connection $connection): void
7777
{
7878
foreach ($schemaBuilder->getSchema()->toSql($connection->getDatabasePlatform()) as $sql) {
7979
$connection->exec($sql);
@@ -83,7 +83,7 @@ final private function applySchema(SchemaBuilder $schemaBuilder, Connection $con
8383
/**
8484
* @internal
8585
*/
86-
final private function applyData(DataBuilder $dataBuilder, Connection $connection): void
86+
private function applyData(DataBuilder $dataBuilder, Connection $connection): void
8787
{
8888
foreach ($dataBuilder->getData() as $table => $rows) {
8989
foreach ($rows as $row) {

0 commit comments

Comments
 (0)