PHP code example of zalas / param-converter-bundle
1. Go to this page and download the library: Download zalas/param-converter-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/ */
zalas / param-converter-bundle example snippets
namespace AppBundle\Controller;
use AppBundle\Site\Visitor;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Response;
class DemoController
{
/**
* @Route("/hello/{name}")
* @ParamConverter(
* "visitor",
* converter="service",
* options={
* "service": "visitor_repository",
* "method": "findByName",
* "arguments": {"name"}
* }
* )
*/
public function indexAction(Visitor $visitor)
{
return new Response('Hello '.$visitor->getName());
}
}