Hi there,
I am mocking some saloon requests and for those I don't want the rate limit to be applied. My first idea was to create something like this in my connector:
public function __construct() {
$this->rateLimitingEnabled = !app()->environment('testing');
}
Is that something you'd recommend or is there a better way?