diff --git a/src/Api/Quote.php b/src/Api/Quote.php index 1f39c3d..e54b70b 100644 --- a/src/Api/Quote.php +++ b/src/Api/Quote.php @@ -5,5 +5,12 @@ class Quote extends Request { - -} \ No newline at end of file + public function get($data) + { + $this->type='GET'; + $this->path='/api/v1/quote'; + $this->data=$data; + + return $this->exec(); + } +}