I'm using Mockery
with Laravel 5.6
. And currently I need to check what has been passed on the 100-th call.
Here is an example check, that I want to perform.
Mockery::mock(ShopifySDK::class)
->shouldReceive('get')
->with(['key' => 'val']) //I need to check passed array on the 100-th call of the "get" method
->getMock();
Is it possible to do it? If it is, then how to do it?