Webhook_Versioning::__construct( BigCommerceWebhooksWebhook[] $hooks )

Summary

Webhook_Listener constructor.


Parameters

$hooks

(BigCommerceWebhooksWebhook[]) (Required)


Source

File: src/BigCommerce/Webhooks/Webhook_Versioning.php

	public function __construct( array $hooks ) {
		foreach ( $hooks as $hook ) {
			$this->hooks[ $hook->get_name() ] = $hook;
		}
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.