@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Kunstmaan\TaggingBundle\AdminList; |
4 | 4 | |
5 | 5 | use Doctrine\ORM\EntityManager; |
6 | - |
|
7 | 6 | use Kunstmaan\TaggingBundle\Form\TagAdminType; |
8 | 7 | use Kunstmaan\AdminListBundle\AdminList\FilterType\ORM; |
9 | 8 | use Kunstmaan\AdminListBundle\AdminList\Configurator\AbstractDoctrineORMAdminListConfigurator; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | /** |
141 | 141 | * Get createdAt |
142 | 142 | * |
143 | - * @return datetime |
|
143 | + * @return \DateTime |
|
144 | 144 | */ |
145 | 145 | public function getCreatedAt() |
146 | 146 | { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | /** |
161 | 161 | * Get updatedAt |
162 | 162 | * |
163 | - * @return datetime |
|
163 | + * @return \DateTime |
|
164 | 164 | */ |
165 | 165 | public function getUpdatedAt() |
166 | 166 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Doctrine\ORM\Mapping as ORM; |
7 | 7 | use Gedmo\Mapping\Annotation as Gedmo; |
8 | 8 | use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; |
9 | - |
|
10 | 9 | use Kunstmaan\TaggingBundle\Form\TagAdminType; |
11 | 10 | |
12 | 11 | /** |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Symfony\Component\Form\AbstractType; |
6 | 6 | use Symfony\Component\Form\Extension\Core\Type\ChoiceType; |
7 | 7 | use Symfony\Component\Form\FormBuilderInterface; |
8 | - |
|
9 | 8 | use Kunstmaan\TaggingBundle\Entity\TagManager; |
10 | 9 | use Kunstmaan\TaggingBundle\Form\DataTransformer\TagsTransformer; |
11 | 10 | use Symfony\Component\OptionsResolver\OptionsResolver; |
@@ -36,7 +36,7 @@ |
||
36 | 36 | /** |
37 | 37 | * Convert an exportCommand into an array of ExportFiles |
38 | 38 | * @param ExportCommand $exportCommand |
39 | - * @return array an array of ExportFiles (without filecontent filled in) |
|
39 | + * @return ArrayCollection an array of ExportFiles (without filecontent filled in) |
|
40 | 40 | */ |
41 | 41 | public function getExportFiles(ExportCommand $exportCommand) |
42 | 42 | { |
@@ -3,18 +3,15 @@ |
||
3 | 3 | namespace Kunstmaan\UserManagementBundle\Controller; |
4 | 4 | |
5 | 5 | use Doctrine\ORM\EntityManager; |
6 | - |
|
7 | 6 | use Kunstmaan\AdminBundle\Controller\BaseSettingsController; |
8 | 7 | use Kunstmaan\AdminBundle\Entity\Group; |
9 | 8 | use Kunstmaan\AdminBundle\FlashMessages\FlashTypes; |
10 | 9 | use Kunstmaan\AdminBundle\Form\GroupType; |
11 | 10 | use Kunstmaan\AdminListBundle\AdminList\AdminList; |
12 | - |
|
13 | 11 | use Kunstmaan\UserManagementBundle\AdminList\GroupAdminListConfigurator; |
14 | 12 | use Symfony\Component\HttpFoundation\RedirectResponse; |
15 | 13 | use Symfony\Component\HttpFoundation\Request; |
16 | 14 | use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
17 | - |
|
18 | 15 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
19 | 16 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; |
20 | 17 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; |