1
0
mirror of synced 2025-02-16 15:03:17 +03:00
This commit is contained in:
Ivan Chaplygin 2024-09-25 16:33:21 +03:00
parent aff95ec791
commit 21c0a3eac5
2 changed files with 1 additions and 2 deletions

View File

@ -174,7 +174,7 @@ trait Customers
/* @noinspection PhpUndefinedMethodInspection */ /* @noinspection PhpUndefinedMethodInspection */
return $this->client->makeRequest( return $this->client->makeRequest(
sprintf('/customer/%s/subscriptions', $customerId), sprintf('/customers/%s/subscriptions', $customerId),
'POST', 'POST',
$this->fillSite( $this->fillSite(
$site, $site,

View File

@ -11,7 +11,6 @@
namespace RetailCrm\Tests\Methods\Version5; namespace RetailCrm\Tests\Methods\Version5;
use RetailCrm\Http\Client;
use RetailCrm\Response\ApiResponse; use RetailCrm\Response\ApiResponse;
use RetailCrm\Test\TestCase; use RetailCrm\Test\TestCase;