Skip to content

Commit

Permalink
Add quote get method.
Browse files Browse the repository at this point in the history
  • Loading branch information
eskrano authored Apr 16, 2019
1 parent 23bf6b8 commit 99778ea
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Api/Quote.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,12 @@

class Quote extends Request
{

}
public function get($data)
{
$this->type='GET';
$this->path='/api/v1/quote';
$this->data=$data;

return $this->exec();
}
}

0 comments on commit 99778ea

Please sign in to comment.