Adam

Results 24 comments of Adam

I found a solution... not 100% if this is the correct way to do it but its working for me at least. Within EtsyAPI.php, add the required parameters for your...

@inakiabt Sorry for such a long delay on this. I came back to using the library recently. I did try your fork but I got some errors and as I...

Sorry... maybe I missed something here? In your main branch, using this also works... ```php $receipts = $api->findAllShopReceipts(array( 'params' => array( 'shop_id' => $apikeys->shop_id, 'limit' => $limit, 'page' => $page...

@stokic does this work on the highlighter too? I did see this previously but I am actually not having any issues with searching with the dashes in place. Maybe this...

Did you find a solution to this? I have the same issue. I have tried `enable_temporary_uploads_session_affinity = false` in config as some others say this helped, but not for me....

That always happens... work on an issue for hours and post for help and then immediately solve it! Turns out you need to actually publish the scout service provider. I...

@mackhankins - I am glad you partly agree, and thanks for such a fast reply! But actually in this case my issue was with the Scout config that was not...

I have just upgraded to the latest version and I seem to have the above issue again on Local development. On our AWS server, there is no issue, but locally...

I added an idea in #85 but it is a breaking change

I think what I am looking for is a syntax like this: ```php public function user_has_customers() { $user = OrderFactory::new() ->withOrderItems( OrderItemFactory::times(30)->forProduct(ProductFactory::new())->allocated()) ) ->create(); $this->assertCount(30, $user->orderItems); } ``` (the above...