mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 17:56:12 +01:00
44ccee57f2
Resolves: #546 Also fix PhpStorm meta codestyle.
168 lines
5.3 KiB
PHP
168 lines
5.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @see https://www.jetbrains.com/help/phpstorm/ide-advanced-metadata.html
|
|
*/
|
|
namespace PHPSTORM_META {
|
|
|
|
override(\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(0), type(0));
|
|
|
|
// TYPO3 testing framework
|
|
// The accesible mock will be of type `self` as well as `MockObject` and `AccessibleObjectInterface`.
|
|
override(
|
|
\TYPO3\TestingFramework\Core\BaseTestCase::getAccessibleMock(0),
|
|
map(
|
|
[
|
|
'' => '@|\\PHPUnit\\Framework\\MockObject\\MockObject'
|
|
. '|\\TYPO3\\TestingFramework\\Core\\AccessibleObjectInterface',
|
|
]
|
|
)
|
|
);
|
|
override(
|
|
\TYPO3\TestingFramework\Core\BaseTestCase::getAccessibleMockForAbstractClass(0),
|
|
map(
|
|
[
|
|
'' => '@|\\PHPUnit\\Framework\\MockObject\\MockObject'
|
|
. '|\\TYPO3\TestingFramework\\Core\\AccessibleObjectInterface',
|
|
]
|
|
)
|
|
);
|
|
|
|
// Contexts
|
|
// @see https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/9.4/Feature-85389-ContextAPIForConsistentDataHandling.html
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\Context::getAspect(),
|
|
0,
|
|
'date',
|
|
'visibility',
|
|
'backend.user',
|
|
'frontend.user',
|
|
'workspace',
|
|
'language',
|
|
'typoscript'
|
|
);
|
|
|
|
override(\TYPO3\CMS\Core\Context\Context::getAspect(), map([
|
|
'date' => \TYPO3\CMS\Core\Context\DateTimeAspect::class,
|
|
'visibility' => \TYPO3\CMS\Core\Context\VisibilityAspect::class,
|
|
'backend.user' => \TYPO3\CMS\Core\Context\UserAspect::class,
|
|
'frontend.user' => \TYPO3\CMS\Core\Context\UserAspect::class,
|
|
'workspace' => \TYPO3\CMS\Core\Context\WorkspaceAspect::class,
|
|
'language' => \TYPO3\CMS\Core\Context\LanguageAspect::class,
|
|
'typoscript' => \TYPO3\CMS\Core\Context\TypoScriptAspect::class,
|
|
]));
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\DateTimeAspect::get(),
|
|
0,
|
|
'timestamp',
|
|
'iso',
|
|
'timezone',
|
|
'full',
|
|
'accessTime'
|
|
);
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\VisibilityAspect::get(),
|
|
0,
|
|
'includeHiddenPages',
|
|
'includeHiddenContent',
|
|
'includeDeletedRecords'
|
|
);
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\UserAspect::get(),
|
|
0,
|
|
'id',
|
|
'username',
|
|
'isLoggedIn',
|
|
'isAdmin',
|
|
'groupIds',
|
|
'groupNames'
|
|
);
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\WorkspaceAspect::get(),
|
|
0,
|
|
'id',
|
|
'isLive',
|
|
'isOffline'
|
|
);
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\LanguageAspect::get(),
|
|
0,
|
|
'id',
|
|
'contentId',
|
|
'fallbackChain',
|
|
'overlayType',
|
|
'legacyLanguageMode',
|
|
'legacyOverlayType'
|
|
);
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Context\TypoScriptAspect::get(),
|
|
0,
|
|
'forcedTemplateParsing'
|
|
);
|
|
|
|
expectedArguments(
|
|
\Psr\Http\Message\ServerRequestInterface::getAttribute(),
|
|
0,
|
|
'backend.user',
|
|
'frontend.user',
|
|
'normalizedParams',
|
|
'site',
|
|
'language',
|
|
'routing',
|
|
'module',
|
|
'moduleData'
|
|
);
|
|
|
|
override(\Psr\Http\Message\ServerRequestInterface::getAttribute(), map([
|
|
'backend.user' => \TYPO3\CMS\Backend\FrontendBackendUserAuthentication::class,
|
|
'frontend.user' => \TYPO3\CMS\Frontend\Authentication\FrontendUserAuthentication::class,
|
|
'normalizedParams' => \TYPO3\CMS\Core\Http\NormalizedParams::class,
|
|
'site' => \TYPO3\CMS\Core\Site\Entity\SiteInterface::class,
|
|
'language' => \TYPO3\CMS\Core\Site\Entity\SiteLanguage::class,
|
|
'routing' => '\TYPO3\CMS\Core\Routing\SiteRouteResult|\TYPO3\CMS\Core\Routing\PageArguments',
|
|
'module' => \TYPO3\CMS\Backend\Module\ModuleInterface::class,
|
|
'moduleData' => \TYPO3\CMS\Backend\Module\ModuleData::class,
|
|
]));
|
|
|
|
expectedArguments(
|
|
\TYPO3\CMS\Core\Http\ServerRequest::getAttribute(),
|
|
0,
|
|
'backend.user',
|
|
'frontend.user',
|
|
'normalizedParams',
|
|
'site',
|
|
'language',
|
|
'routing',
|
|
'module',
|
|
'moduleData'
|
|
);
|
|
|
|
override(\TYPO3\CMS\Core\Http\ServerRequest::getAttribute(), map([
|
|
'backend.user' => \TYPO3\CMS\Backend\FrontendBackendUserAuthentication::class,
|
|
'frontend.user' => \TYPO3\CMS\Frontend\Authentication\FrontendUserAuthentication::class,
|
|
'normalizedParams' => \TYPO3\CMS\Core\Http\NormalizedParams::class,
|
|
'site' => \TYPO3\CMS\Core\Site\Entity\SiteInterface::class,
|
|
'language' => \TYPO3\CMS\Core\Site\Entity\SiteLanguage::class,
|
|
'routing' => '\TYPO3\CMS\Core\Routing\SiteRouteResult|\TYPO3\CMS\Core\Routing\PageArguments',
|
|
'module' => \TYPO3\CMS\Backend\Module\ModuleInterface::class,
|
|
'moduleData' => \TYPO3\CMS\Backend\Module\ModuleData::class,
|
|
]));
|
|
|
|
override(\TYPO3\CMS\Core\Routing\SiteMatcher::matchRequest(), type(
|
|
\TYPO3\CMS\Core\Routing\SiteRouteResult::class,
|
|
\TYPO3\CMS\Core\Routing\RouteResultInterface::class
|
|
)
|
|
);
|
|
|
|
override(\TYPO3\CMS\Core\Routing\PageRouter::matchRequest(), type(
|
|
\TYPO3\CMS\Core\Routing\PageArguments::class,
|
|
\TYPO3\CMS\Core\Routing\RouteResultInterface::class
|
|
));
|
|
}
|