From ecf246d6e9599d3a51c4fea5d7e8a701fa1f9a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 19 Apr 2016 12:16:02 +0200 Subject: [PATCH] fix typo in doc --- Export/ExportInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Export/ExportInterface.php b/Export/ExportInterface.php index 23716380b..55a30622e 100644 --- a/Export/ExportInterface.php +++ b/Export/ExportInterface.php @@ -59,7 +59,7 @@ interface ExportInterface extends ExportElementInterface * * @param QueryBuilder $qb * @param array $requiredModifiers - * @param array $acl an array where each row as a `center` key containing the Chill\MainBundle\Entity\Center, and `circles` containing the reachable circles + * @param array $acl an array where each row has a `center` key containing the Chill\MainBundle\Entity\Center, and `circles` keys containing the reachable circles. Example: `array( array('center' => $centerA, 'circles' => array($circleA, $circleB) ) )` * @param array $data the data from the form, if any */ public function initiateQuery(QueryBuilder $qb, array $requiredModifiers, array $acl, array $data = array());