├── .editorconfig ├── .github └── workflows │ └── continious-integration.yaml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── ecs.yaml ├── extension.neon ├── phpstan.bootstrap.php ├── phpstan.neon ├── phpunit.xml ├── src └── Type │ ├── ContextGetAspectDynamicReturnTypeExtension.php │ ├── GeneralUtilityDynamicReturnTypeExtension.php │ ├── ObjectManagerGetDynamicReturnTypeExtension.php │ ├── ObjectManagerInterfaceGetDynamicReturnTypeExtension.php │ ├── QueryExecuteReturnTypeExtension.php │ └── QueryInterfaceExecuteReturnTypeExtension.php └── tests ├── StaticCodeAnalysis ├── Constants.php ├── GeneralUtility │ └── MakeInstance │ │ ├── CallWithClassConstant.php │ │ ├── CallWithClassString.php │ │ ├── CallWithSelf.php │ │ └── CallWithStatic.php └── ObjectManager │ └── Get │ ├── CallWithClassConstant.php │ ├── CallWithClassString.php │ ├── CallWithSelf.php │ └── CallWithStatic.php ├── Unit └── Type │ ├── ContextGetAspectDynamicReturnTypeExtensionTest.php │ └── GeneralUtilityDynamicReturnTypeExtensionTest.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/continious-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/.github/workflows/continious-integration.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public 2 | /vendor 3 | /.phpunit.result.cache 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/composer.lock -------------------------------------------------------------------------------- /ecs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/ecs.yaml -------------------------------------------------------------------------------- /extension.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/extension.neon -------------------------------------------------------------------------------- /phpstan.bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/phpstan.bootstrap.php -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Type/ContextGetAspectDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/ContextGetAspectDynamicReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/GeneralUtilityDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/GeneralUtilityDynamicReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/ObjectManagerGetDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/ObjectManagerGetDynamicReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/ObjectManagerInterfaceGetDynamicReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/ObjectManagerInterfaceGetDynamicReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/QueryExecuteReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/QueryExecuteReturnTypeExtension.php -------------------------------------------------------------------------------- /src/Type/QueryInterfaceExecuteReturnTypeExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/src/Type/QueryInterfaceExecuteReturnTypeExtension.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/Constants.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithClassConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithClassConstant.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithClassString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithClassString.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithSelf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithSelf.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithStatic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/GeneralUtility/MakeInstance/CallWithStatic.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/ObjectManager/Get/CallWithClassConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/ObjectManager/Get/CallWithClassConstant.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/ObjectManager/Get/CallWithClassString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/ObjectManager/Get/CallWithClassString.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/ObjectManager/Get/CallWithSelf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/ObjectManager/Get/CallWithSelf.php -------------------------------------------------------------------------------- /tests/StaticCodeAnalysis/ObjectManager/Get/CallWithStatic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/StaticCodeAnalysis/ObjectManager/Get/CallWithStatic.php -------------------------------------------------------------------------------- /tests/Unit/Type/ContextGetAspectDynamicReturnTypeExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/Unit/Type/ContextGetAspectDynamicReturnTypeExtensionTest.php -------------------------------------------------------------------------------- /tests/Unit/Type/GeneralUtilityDynamicReturnTypeExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfTYPO3/phpstan-typo3/HEAD/tests/Unit/Type/GeneralUtilityDynamicReturnTypeExtensionTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |