From 5dd98945f8c23903541571e9873be3b1f4751aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 19 Apr 2016 12:22:43 +0200 Subject: [PATCH] fix doc and code alignement --- Export/FormatterInterface.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Export/FormatterInterface.php b/Export/FormatterInterface.php index 2f84793fc..f078e3e46 100644 --- a/Export/FormatterInterface.php +++ b/Export/FormatterInterface.php @@ -42,7 +42,11 @@ interface FormatterInterface * @param type $exportAlias * @param array $aggregatorAliases */ - public function buildForm(FormBuilderInterface $builder, $exportAlias, array $aggregatorAliases); + public function buildForm( + FormBuilderInterface $builder, + $exportAlias, + array $aggregatorAliases + ); /** * Generate a response from the data collected on differents ExportElementInterface @@ -52,8 +56,15 @@ interface FormatterInterface * @param \Chill\MainBundle\Export\ExportInterface $export the export which is executing * @param \Chill\MainBundle\Export\FilterInterface[] $filters the filters applying on the export. The key will be filters aliases, and the values will be filter's data (from their own form) * @param \Chill\MainBundle\Export\AggregatorInterface[] $aggregators the aggregators applying on the export. The key will be aggregators aliases, and the values will be aggregator's data (from their own form) + * @return \Symfony\Component\HttpFoundation\Response The response to be shown */ - public function getResponse($result, $formatterData, $exportAlias, array $exportData, array $filtersData, - array $aggregatorsData); + public function getResponse( + $result, + $formatterData, + $exportAlias, + array $exportData, + array $filtersData, + array $aggregatorsData + ); }