| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * This file is part of web3.php package.
- *
- * (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
- *
- * @author Peter Lai <alk03073135@gmail.com>
- * @license MIT
- */
- namespace Web3\Methods\Eth;
- use InvalidArgumentException;
- use Web3\Methods\EthMethod;
- use Web3\Validators\BlockHashValidator;
- use Web3\Validators\QuantityValidator;
- use Web3\Formatters\HexFormatter;
- use Web3\Formatters\QuantityFormatter;
- class GetUncleByBlockHashAndIndex extends EthMethod
- {
- /**
- * validators
- *
- * @var array
- */
- protected $validators = [
- BlockHashValidator::class, QuantityValidator::class
- ];
- /**
- * inputFormatters
- *
- * @var array
- */
- protected $inputFormatters = [
- HexFormatter::class, QuantityFormatter::class
- ];
- /**
- * outputFormatters
- *
- * @var array
- */
- protected $outputFormatters = [];
- /**
- * defaultValues
- *
- * @var array
- */
- protected $defaultValues = [];
- }
|