Skip to content

Commit 63abad1

Browse files
committed
fix phpstan errors
1 parent f7f8e8c commit 63abad1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/AbstractMigration.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,35 +92,27 @@ public function skipIf(bool $condition, string $message = 'Unknown Reason'): voi
9292

9393
/**
9494
* @throws MigrationException|DBALException
95-
*
96-
* @phpstan-ignore throws.unusedType,throws.unusedType
9795
*/
9896
public function preUp(Schema $schema): void
9997
{
10098
}
10199

102100
/**
103101
* @throws MigrationException|DBALException
104-
*
105-
* @phpstan-ignore throws.unusedType,throws.unusedType
106102
*/
107103
public function postUp(Schema $schema): void
108104
{
109105
}
110106

111107
/**
112108
* @throws MigrationException|DBALException
113-
*
114-
* @phpstan-ignore throws.unusedType,throws.unusedType
115109
*/
116110
public function preDown(Schema $schema): void
117111
{
118112
}
119113

120114
/**
121115
* @throws MigrationException|DBALException
122-
*
123-
* @phpstan-ignore throws.unusedType,throws.unusedType
124116
*/
125117
public function postDown(Schema $schema): void
126118
{

0 commit comments

Comments
 (0)