| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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 blockchain\web3\src\Methods\Eth;
- use InvalidArgumentException;
- use blockchain\web3\src\Methods\EthMethod;
- use blockchain\web3\src\Validators\FilterValidator;
- class GetLogs extends EthMethod
- {
- /**
- * validators
- *
- * @var array
- */
- protected $validators = [
- FilterValidator::class
- ];
- /**
- * inputFormatters
- *
- * @var array
- */
- protected $inputFormatters = [];
- /**
- * outputFormatters
- *
- * @var array
- */
- protected $outputFormatters = [];
- /**
- * defaultValues
- *
- * @var array
- */
- protected $defaultValues = [];
- /**
- * construct
- *
- * @param string $method
- * @param array $arguments
- * @return void
- */
- // public function __construct($method='', $arguments=[])
- // {
- // parent::__construct($method, $arguments);
- // }
- }
|