How can I mock a service class inside a Laravel Job?
I want to mock a service who call a third party, but I can't figure it out. I have a controller method who has a service injected on it and do stuff: public function store(Request $request, MyService $myService) { $data…