From 279d5214312d4f8afe7ca24b59327364ce724fd2 Mon Sep 17 00:00:00 2001 From: Erdal G Date: Sun, 23 Aug 2020 13:29:35 +0200 Subject: [PATCH] Update Customer.php Customer search takes (a very useful) query string parameter: https://shopify.dev/docs/admin-api/rest/reference/customers/customer#search-2020-07 --- lib/Customer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Customer.php b/lib/Customer.php index a058624..3c3a675 100644 --- a/lib/Customer.php +++ b/lib/Customer.php @@ -22,7 +22,7 @@ * -------------------------------------------------------------------------- * Customer -> Custom actions * -------------------------------------------------------------------------- - * @method array search() Search for customers matching supplied query + * @method array search(string $query = '') Search for customers matching supplied query */ class Customer extends ShopifyResource { @@ -60,4 +60,4 @@ public function send_invite($customer_invite = array()) return $this->post($dataArray, $url, false); } -} \ No newline at end of file +}