From 63a1ab8d9374043d664c2a6541f2b6fd665ba061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 25 May 2016 10:55:39 +0200 Subject: [PATCH] rename const TYPE_CSV_LIST => TYPE_LIST The list is not restricted to CSV format. --- Export/FormatterInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Export/FormatterInterface.php b/Export/FormatterInterface.php index 2033642ce..c507a594f 100644 --- a/Export/FormatterInterface.php +++ b/Export/FormatterInterface.php @@ -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();