From 38d9832b720014c2abceffb99c070fd9fbd268df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 31 Mar 2015 21:30:34 +0200 Subject: [PATCH] Fix syntax - namespace should be first declaration https://insight.sensiolabs.com/projects/6031863a-10a3-44d5-891d-ac6dac2ed65a/analyses/1?status=violations#239680027 --- Entity/Report.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Entity/Report.php b/Entity/Report.php index 117956cd1..04a47a150 100644 --- a/Entity/Report.php +++ b/Entity/Report.php @@ -1,9 +1,5 @@ @@ -24,6 +20,10 @@ use Chill\CustomFieldsBundle\Entity\CustomFieldsGroup; namespace Chill\ReportBundle\Entity; +use Chill\MainBundle\Entity\User; +use Chill\PersonBundle\Entity\Person; +use Chill\CustomFieldsBundle\Entity\CustomFieldsGroup; + /** * Report */ @@ -218,4 +218,4 @@ class Report { return $this->cFGroup; } -} \ No newline at end of file +}