1
0
mirror of synced 2024-11-22 05:16:07 +03:00

Add phpdoc

This commit is contained in:
Uryvskiy Dima 2024-08-02 14:44:58 +03:00
parent 8b37fdbdca
commit 805844cd32

View File

@ -12,6 +12,7 @@
namespace RetailCrm\Methods\V5; namespace RetailCrm\Methods\V5;
use RetailCrm\Methods\V4\Orders as Previous; use RetailCrm\Methods\V4\Orders as Previous;
use RetailCrm\Response\ApiResponse;
/** /**
* PHP version 5.4 * PHP version 5.4
@ -32,7 +33,7 @@ trait Orders
* @param array $resultOrder result order * @param array $resultOrder result order
* @param string $technique combining technique * @param string $technique combining technique
* *
* @return \RetailCrm\Response\ApiResponse * @return ApiResponse
*/ */
public function ordersCombine($order, $resultOrder, $technique = 'ours') public function ordersCombine($order, $resultOrder, $technique = 'ours')
{ {
@ -72,7 +73,7 @@ trait Orders
* @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\CurlException
* @throws \RetailCrm\Exception\InvalidJsonException * @throws \RetailCrm\Exception\InvalidJsonException
* *
* @return \RetailCrm\Response\ApiResponse * @return ApiResponse
*/ */
public function ordersPaymentCreate(array $payment, $site = null) public function ordersPaymentCreate(array $payment, $site = null)
{ {
@ -100,7 +101,7 @@ trait Orders
* @param string $by by key * @param string $by by key
* @param null $site site code * @param null $site site code
* *
* @return \RetailCrm\Response\ApiResponse * @return ApiResponse
*/ */
public function ordersPaymentEdit(array $payment, $by = 'id', $site = null) public function ordersPaymentEdit(array $payment, $by = 'id', $site = null)
{ {
@ -134,7 +135,7 @@ trait Orders
* *
* @param string $id payment id * @param string $id payment id
* *
* @return \RetailCrm\Response\ApiResponse * @return ApiResponse
*/ */
public function ordersPaymentDelete($id) public function ordersPaymentDelete($id)
{ {
@ -162,7 +163,7 @@ trait Orders
* @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\CurlException
* @throws \RetailCrm\Exception\InvalidJsonException * @throws \RetailCrm\Exception\InvalidJsonException
* *
* @return \RetailCrm\Response\ApiResponse * @return ApiResponse
*/ */
public function ordersLoyaltyApply(array $order, float $bonuses, $site = null) public function ordersLoyaltyApply(array $order, float $bonuses, $site = null)
{ {
@ -198,6 +199,13 @@ trait Orders
); );
} }
/**
* Create links between orders
*
* @param array $links links data
*
* @return ApiResponse
*/
public function ordersLinksCreate(array $links) public function ordersLinksCreate(array $links)
{ {
if (!count($links)) { if (!count($links)) {