*/ public array $calls = []; public array $response = ['ok' => true, 'data' => ['domain' => 'example.nl']]; public function __construct() { parent::__construct(new OxxaClient); } public function execute(array $parameters, array $credentials): array { $this->calls[] = [ 'parameters' => $parameters, 'credentials' => $credentials, ]; return $this->response; } }