From 57af4569605026fadce733d795260764349de78e Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 9 Apr 2019 15:47:45 +0300 Subject: [PATCH] Add liquidation method Add liquidation method --- src/Api/Liquidation.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/Api/Liquidation.php b/src/Api/Liquidation.php index 41cc3f1..01b9d03 100644 --- a/src/Api/Liquidation.php +++ b/src/Api/Liquidation.php @@ -5,5 +5,12 @@ class Liquidation extends Request { - -} \ No newline at end of file + public function get($data) + { + $this->type='GET'; + $this->path='/api/v1/liquidation'; + $this->data=$data; + + return $this-exec(); + } +}