Skip to content

Commit f198e16

Browse files
author
wasinger
committed
fixed typo, added link
1 parent 13b6edd commit f198e16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ JsonRpcBundle
55

66
JsonRpcBundle is a bundle for Symfony 2.1 and up that allows to easily build a JSON-RPC server for web services using [JSON-RPC 2.0] (http://www.jsonrpc.org/specification).
77

8-
The bundle contains a controller that is able to expose any service method registered in the Symfony service container as a JSON-RPC web service. The return value of the service method is converted to JSON using jms_serializer, if available, and a simple json_encode() otherwise.
8+
The bundle contains a controller that is able to expose methods of any service registered in the Symfony service container as a JSON-RPC web service. The return value of the service method is converted to JSON using [jms_serializer] (https://github.com/schmittjoh/JMSSerializerBundle), if this service is available, and json_encode() otherwise.
99

1010
Of course, it doesn't simply expose all your services' methods to the public, but only those explicitely mentioned in the configuration. And service methods cannot be called by it's original name but by an alias to be defined in the configuration.
1111

@@ -56,7 +56,7 @@ A method name "myfunction1" in the JSON-RPC call will then call the method "meth
5656
Testing
5757
-------
5858
59-
The bundles comes with a test service. To see if it works add the following configuration to your config.yml:
59+
The bundle comes with a test service. To see if it works add the following configuration to your config.yml:
6060
6161
```yaml
6262
# app/config/config.yml

0 commit comments

Comments
 (0)