Skip to content

Commit

Permalink
fix: int instead of integer
Browse files Browse the repository at this point in the history
  • Loading branch information
dated committed May 9, 2019
1 parent f201fbc commit e8fc01d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/API/Node.php
Expand Up @@ -53,11 +53,11 @@ public function configuration(): array
/**
* Get the node fee statistics.
*
* @param integer|null $days
*
* @param int|null $days
*
* @return array
*/
public function fees(integer $days = null): array
public function fees(int $days = null): array
{
return $this->get('node/fees', ['query' => ['days' => $days]]);
}
Expand Down

0 comments on commit e8fc01d

Please sign in to comment.