Skip to content

Commit 6dec417

Browse files
committed
[TASK] Move DoctrineQueryProxy to Proxy namespace
1 parent 565b22e commit 6dec417

11 files changed

Lines changed: 18 additions & 14 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace FluidTYPO3\Vhs\Utility;
2+
namespace FluidTYPO3\Vhs\Proxy;
33

44
/*
55
* This file is part of the FluidTYPO3/Vhs project under GPLv2 or later.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace FluidTYPO3\Vhs\Utility;
2+
namespace FluidTYPO3\Vhs\Proxy;
33

44
use Doctrine\DBAL\Driver\ResultStatement;
55
use Doctrine\DBAL\FetchMode;

Classes/ViewHelpers/Condition/Page/IsLanguageViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1212
use TYPO3\CMS\Core\Context\Context;
1313
use TYPO3\CMS\Core\Context\LanguageAspect;
1414
use TYPO3\CMS\Core\Database\Connection;

Classes/ViewHelpers/Content/AbstractContentViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1112
use FluidTYPO3\Vhs\Traits\SlideViewHelperTrait;
1213
use FluidTYPO3\Vhs\Utility\ContentObjectFetcher;
13-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
1414
use TYPO3\CMS\Core\Database\ConnectionPool;
1515
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
1616
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;

Classes/ViewHelpers/Content/InfoViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1112
use FluidTYPO3\Vhs\Traits\TemplateVariableViewHelperTrait;
1213
use FluidTYPO3\Vhs\Utility\ContentObjectFetcher;
13-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
1414
use TYPO3\CMS\Core\Context\Context;
1515
use TYPO3\CMS\Core\Context\LanguageAspect;
1616
use TYPO3\CMS\Core\Database\Connection;

Classes/ViewHelpers/Page/LanguageMenuViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1112
use FluidTYPO3\Vhs\Traits\ArrayConsumingViewHelperTrait;
1213
use FluidTYPO3\Vhs\Traits\TagViewHelperCompatibility;
1314
use FluidTYPO3\Vhs\Utility\ContentObjectFetcher;
1415
use FluidTYPO3\Vhs\Utility\CoreUtility;
15-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
1616
use TYPO3\CMS\Core\Context\Context;
1717
use TYPO3\CMS\Core\Context\LanguageAspect;
1818
use TYPO3\CMS\Core\Database\ConnectionPool;

Classes/ViewHelpers/Render/RequestViewHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DispatcherProxy;
12+
use FluidTYPO3\Vhs\Traits\CompileWithRenderStatic;
1113
use FluidTYPO3\Vhs\Utility\ContentObjectFetcher;
12-
use FluidTYPO3\Vhs\Utility\DispatcherProxy;
1314
use FluidTYPO3\Vhs\Utility\RequestResolver;
1415
use Psr\Http\Message\ServerRequestInterface;
1516
use TYPO3\CMS\Core\Utility\GeneralUtility;
@@ -22,7 +23,6 @@
2223
use TYPO3\CMS\Fluid\Core\Rendering\RenderingContext;
2324
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
2425
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
25-
use FluidTYPO3\Vhs\Traits\CompileWithRenderStatic;
2626

2727
/**
2828
* ### Render: Request

Classes/ViewHelpers/Resource/AbstractResourceViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1112
use FluidTYPO3\Vhs\Traits\TagViewHelperCompatibility;
12-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
1313
use FluidTYPO3\Vhs\Utility\ResourceUtility;
1414
use TYPO3\CMS\Core\Database\Connection;
1515
use TYPO3\CMS\Core\Database\ConnectionPool;

Classes/ViewHelpers/Resource/Record/AbstractRecordResourceViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1112
use FluidTYPO3\Vhs\Traits\TemplateVariableViewHelperTrait;
1213
use FluidTYPO3\Vhs\Utility\ContentObjectFetcher;
13-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
1414
use FluidTYPO3\Vhs\Utility\ErrorUtility;
1515
use TYPO3\CMS\Core\Context\Context;
1616
use TYPO3\CMS\Core\Database\Connection;

Classes/ViewHelpers/Resource/Record/FalViewHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* LICENSE.md file that was distributed with this source code.
99
*/
1010

11-
use FluidTYPO3\Vhs\Utility\DoctrineQueryProxy;
11+
use FluidTYPO3\Vhs\Proxy\DoctrineQueryProxy;
1212
use FluidTYPO3\Vhs\Utility\ResourceUtility;
1313
use TYPO3\CMS\Core\Database\Connection;
1414
use TYPO3\CMS\Core\Database\ConnectionPool;

0 commit comments

Comments
 (0)