mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[CLEANUP] Polish the PhpStorm meta file (#317)

This commit is contained in:
Oliver Klee 2021-10-06 15:43:51 +02:00 committed by GitHub
parent abca8f73fc
commit cb7cdc3dcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,36 +1,52 @@
<?php
/** @see https://www.jetbrains.com/help/phpstorm/ide-advanced-metadata.html */
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"
// 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',
])
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',
])
map(
[
'' => '@|\\PHPUnit\\Framework\\MockObject\\MockObject'
. '|\\TYPO3\TestingFramework\\Core\\AccessibleObjectInterface',
]
)
);
// Nimut testing framework
// The accesible mock will be of type "self" as well as "MockObject" and "AccessibleMockObjectInterface"
// The accesible mock will be of type `self` as well as `MockObject` and `AccessibleMockObjectInterface`.
override(
\Nimut\TestingFramework\TestCase\AbstractTestCase::getAccessibleMock(0),
map([
'' => '@|\PHPUnit\Framework\MockObject\MockObject|\Nimut\TestingFramework\MockObject\AccessibleMockObjectInterface',
])
map(
[
'' => '@|\\PHPUnit\\Framework\\MockObject\\MockObject'
. '|\\Nimut\\TestingFramework\\MockObject\\AccessibleMockObjectInterface',
]
)
);
override(
\Nimut\TestingFramework\TestCase\AbstractTestCase::getAccessibleMockForAbstractClass(0),
map([
'' => '@|\PHPUnit\Framework\MockObject\MockObject|\Nimut\TestingFramework\MockObject\AccessibleMockObjectInterface',
])
map(
[
'' => '@|\\PHPUnit\\Framework\\MockObject\\MockObject'
. '|\\Nimut\TestingFramework\\MockObject\\AccessibleMockObjectInterface',
]
)
);
}