Skip to content

Commit

Permalink
Remove ignores as they are not needed any longer
Browse files Browse the repository at this point in the history
Signed-off-by: Luís Cobucci <[email protected]>
  • Loading branch information
lcobucci committed Sep 13, 2023
1 parent 0c8ea3a commit 6860e0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Functional/ApplicationRegistrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function commandBusMiddlewareMustBeProperlyDefined(): void
];

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

#[PHPUnit\Test]
Expand Down Expand Up @@ -214,6 +214,6 @@ public function queryBusMiddlewareMustBeProperlyDefined(): void
];

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

0 comments on commit 6860e0b

Please sign in to comment.