ex3v/myclabs-enum-param-converter

Installs: 9 517

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 2

Open Issues: 1

Type:symfony-bundle

dev-master / 0.0.1.x-dev 2019-05-15 15:14 UTC

This package is auto-updated.

Last update: 2024-05-16 02:40:42 UTC


README

A simple Symfony bundle to enable seamless MyClabs\Enum param conversion in your controllers.

Build Status

Installation and usage

1. Install via composer:
composer require ex3v/myclabs-enum-param-converter
2. Enable bundle:
<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new \Ex3v\MyCLabsEnumParamConverterBundle\MyCLabsEnumParamConverterBundle(),
    );
}
3. Use in your controller:
/**
 * @ParamConverter("barType")
 */
public function fooAction(BarType $barType) : Response
{
	//...	
}

Note that you do not have to point out specific converter as long as you use typehints in your controller actions.

If you want to point out this converter explicitly, use following example:

/**
 * @ParamConverter("barType", converter="converter_enum")
 */
public function fooAction(BarType $barType) : Response
{
	//...	
}

Happy coding!