From cb17ad522a87266c7a365badfe420e1b2458dc00 Mon Sep 17 00:00:00 2001 From: Tim Carr Date: Wed, 22 Mar 2023 15:53:32 +0000 Subject: [PATCH] Add missing see tags to functions, linking to API docs --- src/ConvertKit_API.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/ConvertKit_API.php b/src/ConvertKit_API.php index 3c0877d..9adc8b1 100644 --- a/src/ConvertKit_API.php +++ b/src/ConvertKit_API.php @@ -122,6 +122,8 @@ private function create_log(string $message) /** * Gets the current account * + * @see https://developers.convertkit.com/#account + * * @return false|mixed */ public function get_account() @@ -139,6 +141,8 @@ public function get_account() * * @since 1.0.0 * + * @see https://developers.convertkit.com/#forms + * * @return false|mixed */ public function get_forms() @@ -151,6 +155,8 @@ public function get_forms() * * @since 1.0.0 * + * @see https://developers.convertkit.com/#forms + * * @return false|mixed */ public function get_landing_pages() @@ -168,6 +174,8 @@ public function get_landing_pages() * * @throws \InvalidArgumentException If the provided arguments are not of the expected type. * + * @see https://developers.convertkit.com/#add-subscriber-to-a-form + * * @return false|object */ public function form_subscribe(int $form_id, array $options) @@ -654,6 +662,8 @@ public function get_resources(string $resource) * * @throws \InvalidArgumentException If the email address is not a valid email format. * + * @see https://developers.convertkit.com/#list-subscribers + * * @return false|integer */ public function get_subscriber_id(string $email_address)