Skip to content

Commit 6860e0b

Browse files
committed
Remove ignores as they are not needed any longer
Signed-off-by: Luís Cobucci <[email protected]>
1 parent 0c8ea3a commit 6860e0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Functional/ApplicationRegistrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public function commandBusMiddlewareMustBeProperlyDefined(): void
183183
];
184184

185185
self::assertContainsOnlyInstancesOf(Middleware::class, $middlewareList);
186-
self::assertEquals(new CommandBus($middlewareList), $bus); // @phpstan-ignore-line
186+
self::assertEquals(new CommandBus($middlewareList), $bus);
187187
}
188188

189189
#[PHPUnit\Test]
@@ -214,6 +214,6 @@ public function queryBusMiddlewareMustBeProperlyDefined(): void
214214
];
215215

216216
self::assertContainsOnlyInstancesOf(Middleware::class, $middlewareList);
217-
self::assertEquals(new CommandBus($middlewareList), $bus); // @phpstan-ignore-line
217+
self::assertEquals(new CommandBus($middlewareList), $bus);
218218
}
219219
}

0 commit comments

Comments
 (0)