@@ -15,10 +15,10 @@ |
||
| 15 | 15 | use Symfony\Component\DependencyInjection\ContainerInterface; |
| 16 | 16 | use Zikula\BlocksModule\AbstractBlockHandler; |
| 17 | 17 | use Zikula\BlocksModule\Api\ApiInterface\BlockFactoryApiInterface; |
| 18 | +use Zikula\BlocksModule\BlockHandlerInterface; |
|
| 18 | 19 | use Zikula\BlocksModule\Helper\ServiceNameHelper; |
| 19 | 20 | use Zikula\Common\Translator\TranslatorInterface; |
| 20 | 21 | use Zikula\Core\AbstractModule; |
| 21 | -use Zikula\BlocksModule\BlockHandlerInterface; |
|
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * Class BlockFactoryApi |
@@ -11,9 +11,9 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Zikula\BlocksModule\Block; |
| 13 | 13 | |
| 14 | +use Zikula\BlocksModule\AbstractBlockHandler; |
|
| 14 | 15 | use Zikula\Common\Collection\Collectible\PendingContentCollectible; |
| 15 | 16 | use Zikula\Common\Collection\Container; |
| 16 | -use Zikula\BlocksModule\AbstractBlockHandler; |
|
| 17 | 17 | use Zikula\Core\Event\GenericEvent; |
| 18 | 18 | |
| 19 | 19 | /** |
@@ -20,8 +20,8 @@ |
||
| 20 | 20 | use Zikula\BlocksModule\Entity\BlockPlacementEntity; |
| 21 | 21 | use Zikula\BlocksModule\Entity\BlockPositionEntity; |
| 22 | 22 | use Zikula\Core\Controller\AbstractController; |
| 23 | -use Zikula\ThemeModule\Engine\Annotation\Theme; |
|
| 24 | 23 | use Zikula\Core\Response\Ajax\ForbiddenResponse; |
| 24 | +use Zikula\ThemeModule\Engine\Annotation\Theme; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * Class PlacementController |
@@ -11,8 +11,8 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Zikula\BlocksModule\Entity; |
| 13 | 13 | |
| 14 | -use Zikula\Core\Doctrine\EntityAccess; |
|
| 15 | 14 | use Doctrine\ORM\Mapping as ORM; |
| 15 | +use Zikula\Core\Doctrine\EntityAccess; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * BlockPlacement entity class. |
@@ -14,8 +14,8 @@ |
||
| 14 | 14 | use Zikula\ExtensionsModule\Api\ApiInterface\CapabilityApiInterface; |
| 15 | 15 | use Zikula\ExtensionsModule\Constant; |
| 16 | 16 | use Zikula\ExtensionsModule\Entity\ExtensionEntity; |
| 17 | -use Zikula\ExtensionsModule\Entity\Repository\ExtensionRepository; |
|
| 18 | 17 | use Zikula\ExtensionsModule\Entity\RepositoryInterface\ExtensionRepositoryInterface; |
| 18 | +use Zikula\ExtensionsModule\Entity\Repository\ExtensionRepository; |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Class CapabilityApi |
@@ -11,8 +11,8 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Zikula\ExtensionsModule\Tests\Api; |
| 13 | 13 | |
| 14 | -use Zikula\ExtensionsModule\Api\CapabilityApi; |
|
| 15 | 14 | use Zikula\ExtensionsModule\Api\ApiInterface\CapabilityApiInterface; |
| 15 | +use Zikula\ExtensionsModule\Api\CapabilityApi; |
|
| 16 | 16 | use Zikula\ExtensionsModule\Tests\Api\Fixtures\ExtensionStubRepository; |
| 17 | 17 | |
| 18 | 18 | class CapabilityApiTest extends \PHPUnit_Framework_TestCase |
@@ -11,8 +11,8 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Zikula\GroupsModule\Entity; |
| 13 | 13 | |
| 14 | -use Zikula\Core\Doctrine\EntityAccess; |
|
| 15 | 14 | use Doctrine\ORM\Mapping as ORM; |
| 15 | +use Zikula\Core\Doctrine\EntityAccess; |
|
| 16 | 16 | use Zikula\UsersModule\Entity\UserEntity; |
| 17 | 17 | |
| 18 | 18 | /** |
@@ -12,15 +12,14 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace Zikula\RoutesModule\Controller; |
| 14 | 14 | |
| 15 | -use Zikula\RoutesModule\Controller\Base\AbstractRouteController; |
|
| 16 | - |
|
| 17 | 15 | use RuntimeException; |
| 18 | 16 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
| 19 | 17 | use Symfony\Component\HttpFoundation\Request; |
| 20 | -use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
|
| 21 | 18 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 22 | -use Zikula\ThemeModule\Engine\Annotation\Theme; |
|
| 19 | +use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
|
| 20 | +use Zikula\RoutesModule\Controller\Base\AbstractRouteController; |
|
| 23 | 21 | use Zikula\RoutesModule\Entity\RouteEntity; |
| 22 | +use Zikula\ThemeModule\Engine\Annotation\Theme; |
|
| 24 | 23 | |
| 25 | 24 | /** |
| 26 | 25 | * Route controller class providing navigation and interaction functionality. |
@@ -12,9 +12,8 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace Zikula\RoutesModule\Entity; |
| 14 | 14 | |
| 15 | -use Zikula\RoutesModule\Entity\Base\AbstractRouteEntity as BaseEntity; |
|
| 16 | - |
|
| 17 | 15 | use Doctrine\ORM\Mapping as ORM; |
| 16 | +use Zikula\RoutesModule\Entity\Base\AbstractRouteEntity as BaseEntity; |
|
| 18 | 17 | |
| 19 | 18 | /** |
| 20 | 19 | * Entity class that defines the entity structure and behaviours. |