Skip to content
Snippets Groups Projects
Commit 90a7f8ef authored by Frank Nägler's avatar Frank Nägler Committed by Jigal van Hemert
Browse files

[TASK] Add configuration file for DynamicReturnTypePlugin

Adding configuration file for DynamicReturnTypePlugin for PHPStorm.
The plug-in makes it possible to use code completion for dynamic
return types. plug-in allow a dynamic return type from method calls.
It can use either the instance type of the passed parameter or a
string look-up.

Since the ::class feature is used this is a good addition for all
developers.

PHPStorm Plugin: http://plugins.jetbrains.com/plugin/7251

Resolves: #63553
Releases: master
Change-Id: I171de5400a213a375a614844e6f2671b74bcc938
Reviewed-on: http://review.typo3.org/35006


Reviewed-by: default avatarJigal van Hemert <jigal.van.hemert@typo3.org>
Tested-by: default avatarJigal van Hemert <jigal.van.hemert@typo3.org>
parent 5fa7980a
No related merge requests found
{
// configuration file for PHPStorm Plugin: http://plugins.jetbrains.com/plugin/7251
"methodCalls": [
// Do not add the methods getMock or getAccessibleMock to this configuration
// because additive type information gets lost. Use comments to define object types.
{
"class": "\\TYPO3\\CMS\\Core\\Utility\\GeneralUtility",
"method": "makeInstance",
"position": 0
},
{
"class": "\\TYPO3\\CMS\\Extbase\\Object\\ObjectManagerInterface",
"method": "get",
"position": 0
}
],
"functionCalls": [
]
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment