Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DannyBen/php-quandl
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyBen committed Jun 22, 2016
2 parents a0aad29 + a06f8eb commit 2087585
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Quandl.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public function getSearch($query, $page=1, $per_page=300) {
// getList returns the list of symbols for a given source.
public function getList($source, $page=1, $per_page=300) {
$params = [
"query" => "*",
"source_code" => $source,
"per_page" => $per_page,
"page" => $page,
"query" => "*",
"database_code" => $source,
"per_page" => $per_page,
"page" => $page,
];
$url = $this->getUrl("list", $this->getFormat(),
$this->arrangeParams($params));
Expand Down

0 comments on commit 2087585

Please sign in to comment.