| 1234567891011121314151617181920212223242526272829 |
- <?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;
- interface IRPC
- {
- /**
- * __toString
- *
- * @return array
- */
- public function __toString();
- /**
- * toPayload
- *
- * @return array
- */
- public function toPayload();
- }
|