Skip to content

Commit

Permalink
Fix merge conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jul 19, 2024
1 parent 29ba97c commit 1c640d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Framework/MockObject/Generator/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ public function testDoubleForInterfaceIntersection(array $interfaces, bool $mock
}

/**
* @param ?list<non-empty-string> $methods
*
* @throws ClassIsEnumerationException
* @throws ClassIsFinalException
* @throws MethodNamedMethodException
Expand Down
6 changes: 5 additions & 1 deletion src/Framework/MockObject/Generator/MockBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ final class MockBuilder
/**
* @psalm-var ?class-string
*/
private ?string $mockClassName = null;
private ?string $mockClassName = null;

/**
* @var array<mixed>
*/
private array $constructorArgs = [];
private bool $originalConstructor = true;
private bool $originalClone = true;
Expand Down

0 comments on commit 1c640d4

Please sign in to comment.