rename const TYPE_CSV_LIST => TYPE_LIST

The list is not restricted to CSV format.
This commit is contained in:
Julien Fastré 2016-05-25 10:55:39 +02:00
parent 90f710faa0
commit 63a1ab8d93

View File

@ -28,7 +28,7 @@ use Symfony\Component\Form\FormBuilderInterface;
interface FormatterInterface
{
const TYPE_TABULAR = 'tabular';
const TYPE_CSV_LIST = 'csvlist';
const TYPE_LIST = 'list';
public function getType();