phpstan-mockery icon indicating copy to clipboard operation
phpstan-mockery copied to clipboard

PHPStan extension for Mockery

Results 11 phpstan-mockery issues
Sort by recently updated
recently updated
newest added
trafficstars

When creating a mock and setting a property on the mock, which is the recommended way for mocking public properties, it gives an undefined property error. ``` $user = Mockery::mock(User::class);...