@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | /** |
| 75 | 75 | * Return the url to edit the given $item |
| 76 | 76 | * |
| 77 | - * @param mixed $item |
|
| 77 | + * @param \Kunstmaan\FormBundle\Tests\Entity\FakePage $item |
|
| 78 | 78 | * |
| 79 | 79 | * @return array |
| 80 | 80 | */ |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | /** |
| 125 | 125 | * Configure if it's possible to delete the given $item |
| 126 | 126 | * |
| 127 | - * @param mixed $item |
|
| 127 | + * @param \Kunstmaan\FormBundle\Tests\Entity\FakePage $item |
|
| 128 | 128 | * |
| 129 | 129 | * @return bool |
| 130 | 130 | */ |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | /** |
| 148 | 148 | * Get the delete url for the given $item |
| 149 | 149 | * |
| 150 | - * @param mixed $item |
|
| 150 | + * @param \Kunstmaan\FormBundle\Tests\Entity\FakePage $item |
|
| 151 | 151 | * |
| 152 | 152 | * @return array |
| 153 | 153 | */ |
@@ -4,8 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManagerInterface; |
| 6 | 6 | use Kunstmaan\AdminBundle\Entity\AclChangeset; |
| 7 | -use Kunstmaan\AdminBundle\Helper\Security\Acl\Permission\PermissionAdmin; |
|
| 8 | -use Kunstmaan\AdminBundle\Repository\AclChangesetRepository; |
|
| 9 | 7 | use Kunstmaan\UtilitiesBundle\Helper\Shell\Shell; |
| 10 | 8 | use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
| 11 | 9 | use Symfony\Component\Console\Input\InputInterface; |
@@ -2,15 +2,12 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Kunstmaan\AdminBundle\Command; |
| 4 | 4 | |
| 5 | -use Doctrine\ORM\EntityManager; |
|
| 6 | 5 | use Doctrine\ORM\EntityManagerInterface; |
| 7 | 6 | use Kunstmaan\AdminBundle\Entity\Group; |
| 8 | 7 | use Kunstmaan\AdminBundle\Entity\Role; |
| 9 | 8 | use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
| 10 | 9 | use Symfony\Component\Console\Input\InputArgument; |
| 11 | - |
|
| 12 | 10 | use Symfony\Component\Console\Input\InputInterface; |
| 13 | - |
|
| 14 | 11 | use Symfony\Component\Console\Input\InputOption; |
| 15 | 12 | use Symfony\Component\Console\Output\OutputInterface; |
| 16 | 13 | |
@@ -2,14 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Kunstmaan\AdminBundle\Command; |
| 4 | 4 | |
| 5 | -use Doctrine\ORM\EntityManager; |
|
| 6 | 5 | use Doctrine\ORM\EntityManagerInterface; |
| 7 | 6 | use Kunstmaan\AdminBundle\Entity\Role; |
| 8 | 7 | use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
| 9 | 8 | use Symfony\Component\Console\Input\InputArgument; |
| 10 | - |
|
| 11 | 9 | use Symfony\Component\Console\Input\InputInterface; |
| 12 | - |
|
| 13 | 10 | use Symfony\Component\Console\Output\OutputInterface; |
| 14 | 11 | |
| 15 | 12 | /** |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Kunstmaan\AdminBundle\Command; |
| 4 | 4 | |
| 5 | -use Doctrine\ORM\EntityManager; |
|
| 6 | 5 | use Doctrine\ORM\EntityManagerInterface; |
| 7 | 6 | use FOS\UserBundle\Model\GroupManagerInterface; |
| 8 | 7 | use Kunstmaan\AdminBundle\Entity\Group; |
@@ -4,8 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use FOS\UserBundle\Form\Type\ResettingFormType; |
| 6 | 6 | use InvalidArgumentException; |
| 7 | - |
|
| 8 | -use Kunstmaan\AdminBundle\Helper\DomainConfiguration; |
|
| 9 | 7 | use Symfony\Component\Config\FileLocator; |
| 10 | 8 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
| 11 | 9 | use Symfony\Component\DependencyInjection\Definition; |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Kunstmaan\NodeBundle\Tests\Helper; |
| 4 | 4 | |
| 5 | -use Doctrine\Common\Collections\ArrayCollection; |
|
| 6 | 5 | use Doctrine\Common\Persistence\ObjectRepository; |
| 7 | 6 | use Doctrine\ORM\EntityManager; |
| 8 | 7 | use Doctrine\ORM\EntityManagerInterface; |
@@ -477,7 +477,7 @@ discard block |
||
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | /** |
| 480 | - * @return mixed|null |
|
| 480 | + * @return User|null |
|
| 481 | 481 | */ |
| 482 | 482 | protected function getUser() |
| 483 | 483 | { |
@@ -493,7 +493,7 @@ discard block |
||
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | /** |
| 496 | - * @return mixed |
|
| 496 | + * @return User |
|
| 497 | 497 | */ |
| 498 | 498 | protected function getAdminUser() |
| 499 | 499 | { |
@@ -8,13 +8,10 @@ discard block |
||
| 8 | 8 | use InvalidArgumentException; |
| 9 | 9 | use Kunstmaan\AdminBundle\Entity\BaseUser; |
| 10 | 10 | use Kunstmaan\AdminBundle\Entity\EntityInterface; |
| 11 | -use Kunstmaan\AdminBundle\Entity\User; |
|
| 12 | 11 | use Kunstmaan\AdminBundle\FlashMessages\FlashTypes; |
| 13 | 12 | use Kunstmaan\AdminBundle\Helper\FormWidgets\FormWidget; |
| 14 | - |
|
| 15 | 13 | use Kunstmaan\AdminBundle\Helper\FormWidgets\Tabs\Tab; |
| 16 | 14 | use Kunstmaan\AdminBundle\Helper\FormWidgets\Tabs\TabPane; |
| 17 | - |
|
| 18 | 15 | use Kunstmaan\AdminBundle\Helper\Security\Acl\AclHelper; |
| 19 | 16 | use Kunstmaan\AdminBundle\Helper\Security\Acl\Permission\PermissionMap; |
| 20 | 17 | use Kunstmaan\AdminBundle\Service\AclManager; |
@@ -43,7 +40,6 @@ discard block |
||
| 43 | 40 | use Symfony\Component\HttpFoundation\JsonResponse; |
| 44 | 41 | use Symfony\Component\HttpFoundation\RedirectResponse; |
| 45 | 42 | use Symfony\Component\HttpFoundation\Request; |
| 46 | -use Symfony\Component\Security\Acl\Model\EntryInterface; |
|
| 47 | 43 | use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface; |
| 48 | 44 | use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
| 49 | 45 | use Symfony\Component\Translation\TranslatorInterface; |