1: <?php
2: /*
3: * This class was auto-generated from the API references found at
4: * https://apireference.connect.worldline-solutions.com/
5: */
6: namespace Worldline\Connect\Sdk\V1\Webhooks;
7:
8: use Worldline\Connect\Sdk\Webhooks\SecretKeyStore;
9:
10: /**
11: * Worldline Global Collect platform factory for several v1 webhooks components.
12: */
13: class V1WebhooksFactory
14: {
15: /**
16: * Creates a {@link WebhooksHelper} that will use the given {@link SecretKeyStore}.
17: */
18: public function createHelper(SecretKeyStore $secretKeyStore) {
19: return new WebhooksHelper($secretKeyStore);
20: }
21: }
22: