Commit Graph

3 Commits

Author SHA1 Message Date
Francis Besset b4da2f727e Added besimple.soap.response service
It is highly recommended not to instantiate BeSimple\SoapBundle\Soap\SoapResponse
but to use the service besimple.soap.response

Before:

    public function helloAction($name)
    {
        return new SoapResponse("Hello ".$name);
    }

After:

    public function helloAction($name)
    {
        return $this
            ->container
            ->get('besimple.soap.response')
            ->setReturnValue("Hello ".$name)
        ;
    }
2011-08-27 22:56:51 +02:00
Francis Besset d3a8965500 [Doc] Updated array tutorial 2011-08-14 18:13:12 +02:00
Francis Besset c4217ce816 Added RST documentation 2011-08-02 23:27:56 +02:00