Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| NonceInformation | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace Attestto\SolanaPhpSdk\Util; |
| 4 | |
| 5 | use Attestto\SolanaPhpSdk\TransactionInstruction; |
| 6 | |
| 7 | class NonceInformation |
| 8 | { |
| 9 | public string $nonce; |
| 10 | public TransactionInstruction $nonceInstruction; |
| 11 | |
| 12 | public function __construct(string $nonce, TransactionInstruction $nonceInstruction) |
| 13 | { |
| 14 | $this->nonce = $nonce; |
| 15 | $this->nonceInstruction = $nonceInstruction; |
| 16 | } |
| 17 | } |