expertlead / webflow-php-sdk

PHP SDK for the Webflow CMS API
https://packagist.org/packages/expertlead/webflow-php-sdk
MIT License
25 stars 14 forks source link

Update Code for Publish for simpler workflow #14

Closed tobya closed 3 months ago

tobya commented 3 years ago

I updated the code for publish so that it can be called with or without the 'domains' key

Both will work

$webflow->publishSite($siteId, ['domains' => ['mydomain.webflow.io', 'example.com']]);

$webflow->publishSite($siteId,['mydomain.webflow.io', 'example.com']);

Allow for a slightly more intuitive calling.

Additionally I have added a few more calls to the Readme.md to highlight other methods.