| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 78 | public function __construct( |
||
| 79 | string $walletId, |
||
| 80 | float $nonce = null, |
||
| 81 | string $signature = null, |
||
| 82 | int $from = null, |
||
| 83 | int $to = null, |
||
| 84 | int $limit = null, |
||
| 85 | int $page = null |
||
| 86 | ) { |
||
| 87 | $this->walletId = $walletId; |
||
| 88 | $this->nonce = $nonce; |
||
| 89 | $this->signature = $signature; |
||
| 90 | $this->from = $from; |
||
| 91 | $this->to = $to; |
||
| 92 | $this->limit = $limit; |
||
| 93 | $this->page = $page; |
||
| 94 | } |
||
| 130 |