Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions testing/database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ so, get the entity manager via the service container as follows::
*/
private $entityManager;

protected function setUp()
protected function setUp(): void
{
$kernel = self::bootKernel();

Expand All @@ -240,7 +240,7 @@ so, get the entity manager via the service container as follows::
$this->assertSame(14.50, $product->getPrice());
}

protected function tearDown()
protected function tearDown(): void
{
parent::tearDown();

Expand Down