Home

Awesome

Param Converter Bundle

This bundle provides additional param converters for Symfony.

Scrutinizer Code Quality Build Status

Since argument resolvers and service arguments were introduced in Symfony 3.3, the param converter provided by this bundle is redundant. We can achieve pretty much the same by injecting services directly to controller actions.

Installation

This bundle requires:

The easiest way to install it is to use Composer:

$ composer require zalas/param-converter-bundle:^1.0

Service Param Converter

The service param converter calls a configured service to convert a request attribute to an object.

Options:

Example:

<?php

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());
    }
}