similar to https://github.com/phpstan/phpstan-mockery/issues/3 I am still experiencing the following code as failing on `0.11.2` ``` $mock = Mockery::mock(Something::class); $mock ->shouldReceive('foo') ->andReturn(null) ->shouldReceive('bar'); ``` Currently, the second shouldReceive call will trigger this error: `Call to an undefined method Mockery\Expectation::shouldReceive().`