PHP code example of bankiru / rpc-server-bundle
1. Go to this page and download the library: Download bankiru/rpc-server-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bankiru / rpc-server-bundle example snippets
@Method("my-bundle/my-method", context={"private"}, defaultContext=false)
/**
* Class AnnotationController
*
* @package Bankiru\Api\JsonRpc\Test\JsonRpc
* @Method("annotation/")
*/
class AnnotationController extends Controller
{
/**
* @return array
* @Method("sub")
*/
public function subAction()
{
return [];
}
}