| 1 | <?php  | 
            ||
| 11 | class Control extends AbstractApi  | 
            ||
| 12 | { | 
            ||
| 13 | /**  | 
            ||
| 14 | * The getinfo RPC prints various information about the node and the network.  | 
            ||
| 15 | * @return mixed  | 
            ||
| 16 | */  | 
            ||
| 17 | public function getInfo()  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * The help RPC lists all available public RPC commands,  | 
            ||
| 24 | * or gets help for the specified RPC. Commands which are  | 
            ||
| 25 | * unavailable will not be listed, such as wallet RPCs if  | 
            ||
| 26 | * wallet support is disabled.  | 
            ||
| 27 | * @return mixed  | 
            ||
| 28 | */  | 
            ||
| 29 | public function help()  | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 | * The stop RPC safely shuts down the Bitcoin Core server.  | 
            ||
| 36 | * @return mixed  | 
            ||
| 37 | */  | 
            ||
| 38 | public function stop()  | 
            ||
| 42 | }  |