From 5e12df17a55efec397f42bc3cefe4ab75cc6d095 Mon Sep 17 00:00:00 2001 From: sc0Vu Date: Fri, 26 Jan 2018 16:20:51 +0800 Subject: [PATCH] shh_version --- src/Methods/Shh/Version.php | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/Methods/Shh/Version.php diff --git a/src/Methods/Shh/Version.php b/src/Methods/Shh/Version.php new file mode 100644 index 0000000..33e0682 --- /dev/null +++ b/src/Methods/Shh/Version.php @@ -0,0 +1,58 @@ + + * + * @author Peter Lai + * @license MIT + */ + +namespace Web3\Methods\Shh; + +use InvalidArgumentException; +use Web3\Methods\EthMethod; + +class Version extends EthMethod +{ + /** + * validators + * + * @var array + */ + protected $validators = []; + + /** + * 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); + // } +} \ No newline at end of file