GetLogs.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * This file is part of web3.php package.
  4. *
  5. * (c) Kuan-Cheng,Lai <alk03073135@gmail.com>
  6. *
  7. * @author Peter Lai <alk03073135@gmail.com>
  8. * @license MIT
  9. */
  10. namespace blockchain\web3\src\Methods\Eth;
  11. use InvalidArgumentException;
  12. use blockchain\web3\src\Methods\EthMethod;
  13. use blockchain\web3\src\Validators\FilterValidator;
  14. class GetLogs extends EthMethod
  15. {
  16. /**
  17. * validators
  18. *
  19. * @var array
  20. */
  21. protected $validators = [
  22. FilterValidator::class
  23. ];
  24. /**
  25. * inputFormatters
  26. *
  27. * @var array
  28. */
  29. protected $inputFormatters = [];
  30. /**
  31. * outputFormatters
  32. *
  33. * @var array
  34. */
  35. protected $outputFormatters = [];
  36. /**
  37. * defaultValues
  38. *
  39. * @var array
  40. */
  41. protected $defaultValues = [];
  42. /**
  43. * construct
  44. *
  45. * @param string $method
  46. * @param array $arguments
  47. * @return void
  48. */
  49. // public function __construct($method='', $arguments=[])
  50. // {
  51. // parent::__construct($method, $arguments);
  52. // }
  53. }