Accounts.php 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 blockchain\web3\src\Methods\EthMethod;
  12. class Accounts extends EthMethod
  13. {
  14. /**
  15. * validators
  16. *
  17. * @var array
  18. */
  19. protected $validators = [];
  20. /**
  21. * inputFormatters
  22. *
  23. * @var array
  24. */
  25. protected $inputFormatters = [];
  26. /**
  27. * outputFormatters
  28. *
  29. * @var array
  30. */
  31. protected $outputFormatters = [];
  32. /**
  33. * defaultValues
  34. *
  35. * @var array
  36. */
  37. protected $defaultValues = [];
  38. /**
  39. * construct
  40. *
  41. * @param string $method
  42. * @param array $arguments
  43. * @return void
  44. */
  45. // public function __construct($method='', $arguments=[])
  46. // {
  47. // parent::__construct($method, $arguments);
  48. // }
  49. }