Skip to content

Commit e47c1e9

Browse files
committed
Applied automated CS fixes
1 parent 40dfac1 commit e47c1e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/LeakyIntegrationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ public function doesLeakATinyAmountOfMemory(): void
4848
}
4949

5050
/** @test */
51-
public function doesNotLeakGarbageCollectedMocks() : void
51+
public function doesNotLeakGarbageCollectedMocks(): void
5252
{
5353
$this->createMock(stdClass::class);
5454

5555
$this->addToAssertionCount(1);
5656
}
5757

5858
/** @test */
59-
public function doesNotLeakGarbageCollectedProphecyMocks() : void
59+
public function doesNotLeakGarbageCollectedProphecyMocks(): void
6060
{
6161
LeakyStaticObject::leak($this->prophesize(stdClass::class));
6262

@@ -72,7 +72,7 @@ public function doesLeakAMock(): void
7272
}
7373

7474
/** @test */
75-
public function doesLeakAProphecyMock() : void
75+
public function doesLeakAProphecyMock(): void
7676
{
7777
LeakyStaticObject::leak($this->prophesize(stdClass::class));
7878

0 commit comments

Comments
 (0)