[cs] improve configured rules types (#4491)

* [cs] improve configured rules types

* [ci] update env variable
This commit is contained in:
Tomas Votruba 2020-10-27 15:00:39 +01:00 committed by GitHub
parent 44b27f779e
commit a1e50263d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
103 changed files with 103 additions and 103 deletions

View File

@ -62,6 +62,6 @@ jobs:
author_email: tomas@getrector.org
env:
# to get push access
token: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- run: ${{ matrix.actions.check_run }}

View File

@ -54,4 +54,4 @@ jobs:
author_email: tomas@getrector.org
env:
# to get push access
token: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

View File

@ -62,7 +62,7 @@ final class MoveServicesBySuffixToDirectoryRectorTest extends AbstractFileSystem
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -74,7 +74,7 @@ final class MutualRenameTest extends AbstractFileSystemRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -48,7 +48,7 @@ final class MoveValueObjectsToValueObjectDirectoryRectorTest extends AbstractFil
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class ArrayToFluentCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ModalToGetSetRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -30,7 +30,7 @@ final class RenameMethodCallBasedOnParameterRectorTest extends AbstractRectorTes
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class ReturnArrayClassMethodToYieldRectorTest extends AbstractRectorTestCa
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class YieldClassMethodToArrayClassMethodRectorTest extends AbstractRectorT
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class FunctionCallToConstantRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class PreferThisOrSelfMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -43,7 +43,7 @@ final class DecoupleClassMethodToOwnClassRectorTest extends AbstractRectorTestCa
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -33,7 +33,7 @@ final class DoctrineRepositoryAsServiceTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class AddEntityIdByConditionRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class EntityAliasToClassConstantReferenceRectorTest extends AbstractRector
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ChangeConstantVisibilityRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class RenameClassConstantsUseToStringsRectorTest extends AbstractRectorTes
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class RemoveAnnotationRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class AddMethodParentCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class AddReturnTypeDeclarationRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -28,7 +28,7 @@ final class ArgumentAdderRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ArgumentDefaultValueReplacerRectorTest extends AbstractRectorTestCas
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class ArgumentRemoverRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ChangeContractMethodSingleToManyRectorTest extends AbstractRectorTes
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ChangeMethodVisibilityRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class NormalToFluentRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class WrapReturnRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class ActionInjectionToConstructorInjectionRectorTest extends AbstractRect
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class AddInterfaceByTraitRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class AddPropertyByParentRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class MergeInterfacesRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class ParentClassToTraitsRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class RemoveInterfacesRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class RemoveParentRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class RemoveTraitRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class MethodCallToReturnRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class FuncCallToNewRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class FuncCallToStaticCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -30,7 +30,7 @@ final class RemoveFuncCallArgRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class RemoveIniGetSetFuncCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class SwapFuncCallArgumentsRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class MethodCallRemoverRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class NewObjectToFactoryCreateRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ChangePropertyVisibilityRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -33,7 +33,7 @@ final class InjectAnnotationClassRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -30,7 +30,7 @@ final class RectorOrderTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class SwapClassMethodArgumentsRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class StringToClassConstantRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class AddTopIncludeRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class GetAndSetToMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class UnsetAndIssetToMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ToStringToMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class NetteTesterPHPUnitRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class OrderConstructorDependenciesByTypeAlphabeticallyRectorTest extends A
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class OrderPublicInterfaceMethodRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -30,7 +30,7 @@ final class PhpSpecToPHPUnitRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class ReservedObjectRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class ReservedFnFunctionRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class ClassLikeTypesOnlyTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class DoctrineTypedPropertyRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -31,7 +31,7 @@ final class TypedPropertyRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ArrayArgumentInTestToDataProviderRectorTest extends AbstractRectorTe
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class PHPUnitStaticToKernelTestCaseGetRectorTest extends AbstractRectorTes
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -36,7 +36,7 @@ final class PassFactoryToEntityRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class StaticTypeToSetterInjectionRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -28,7 +28,7 @@ final class RenameClassConstantRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class RenameAnnotationRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class RenameConstantRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class PseudoNamespaceToNamespaceRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class RenameFunctionRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -30,7 +30,7 @@ final class RenameMethodRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -34,7 +34,7 @@ final class AutoImportNamesParameterTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -33,7 +33,7 @@ final class FunctionAutoImportNamesParameterTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -42,7 +42,7 @@ final class RenameClassRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -31,7 +31,7 @@ final class RenameNonPhpTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class RenameNamespaceRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class RenamePropertyRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -28,7 +28,7 @@ final class RenameStaticMethodRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class CompleteImportForPartialAnnotationRectorTest extends AbstractRectorT
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class CompleteMissingDependencyInNewRectorTest extends AbstractRectorTestC
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class MultiParentingToAbstractDependencyRectorTest extends AbstractRectorT
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class SymfonyMultiParentingToAbstractDependencyRectorTest extends Abstract
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ReplaceArrayWithObjectRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class ChangeServiceArgumentsToMethodCallRectorTest extends AbstractRectorT
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class ChangeFileLoaderInExtensionAndKernelRectorTest extends AbstractRecto
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -33,7 +33,7 @@ final class ContainerGetToConstructorInjectionRectorTest extends AbstractRectorT
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -29,7 +29,7 @@ final class GetToConstructorInjectionRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class PropertyAssignToMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class PropertyToMethodRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ArgumentFuncCallToMethodCallRectorTest extends AbstractRectorTestCas
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class FuncCallToMethodCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class MethodCallToAnotherMethodCallWithArgumentsRectorTest extends Abstrac
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -25,7 +25,7 @@ final class MethodCallToPropertyFetchRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -26,7 +26,7 @@ final class MethodCallToStaticCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class ReplaceParentCallByPropertyCallRectorTest extends AbstractRectorTest
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -33,7 +33,7 @@ final class ServiceGetterToConstructorInjectionRectorTest extends AbstractRector
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -28,7 +28,7 @@ final class NewToStaticCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -27,7 +27,7 @@ final class StaticCallToFuncCallRectorTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

View File

@ -34,7 +34,7 @@ final class InvalidConfigurationTest extends AbstractRectorTestCase
}
/**
* @return mixed[]
* @return array<string, mixed[]>
*/
protected function getRectorsWithConfiguration(): array
{

Some files were not shown because too many files have changed in this diff Show More