mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 06:14:23 +00:00
Fix syntax - namespace should be first declaration
https://insight.sensiolabs.com/projects/6031863a-10a3-44d5-891d-ac6dac2ed65a/analyses/1?status=violations#239680027
This commit is contained in:
parent
df9fb881b1
commit
38d9832b72
@ -1,9 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Chill\MainBundle\Entity\User;
|
|
||||||
use Chill\PersonBundle\Entity\Person;
|
|
||||||
use Chill\CustomFieldsBundle\Entity\CustomFieldsGroup;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014, Champs Libres Cooperative SCRLFS, <http://www.champs-libres.coop>
|
* Copyright (C) 2014, Champs Libres Cooperative SCRLFS, <http://www.champs-libres.coop>
|
||||||
@ -24,6 +20,10 @@ use Chill\CustomFieldsBundle\Entity\CustomFieldsGroup;
|
|||||||
|
|
||||||
namespace Chill\ReportBundle\Entity;
|
namespace Chill\ReportBundle\Entity;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Entity\User;
|
||||||
|
use Chill\PersonBundle\Entity\Person;
|
||||||
|
use Chill\CustomFieldsBundle\Entity\CustomFieldsGroup;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Report
|
* Report
|
||||||
*/
|
*/
|
||||||
@ -218,4 +218,4 @@ class Report
|
|||||||
{
|
{
|
||||||
return $this->cFGroup;
|
return $this->cFGroup;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user