Completed
Pull Request — 3.6 (#1940)
by Sander
09:43
created
src/Kunstmaan/TaggingBundle/AdminList/TagAdminListConfigurator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Entity/Tag.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
160 160
     /**
161 161
      * Get updatedAt
162 162
      *
163
-     * @return datetime
163
+     * @return \DateTime
164 164
      */
165 165
     public function getUpdatedAt()
166 166
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Form/TagsAdminType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
TranslatorBundle/Service/Command/Exporter/ExportCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Kunstmaan/UserManagementBundle/Controller/GroupsController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,18 +3,15 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.