├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer-require-checker.json ├── composer.json ├── docs ├── caching.md ├── implementing_custom_types.md ├── native_adapters.md ├── php_doc_properties_and_methods.md └── types.md ├── infection.json5.dist ├── src ├── AliasReflection.php ├── Annotated │ ├── CustomTypeResolver.php │ ├── CustomTypeResolvers.php │ ├── NullCustomTypeResolver.php │ └── TypeContext.php ├── AttributeReflection.php ├── Cache │ └── FreshCache.php ├── ClassConstantReflection.php ├── ClassReflection.php ├── Collection.php ├── ConstantReflection.php ├── Deprecation.php ├── Exception │ ├── DeclarationNotFound.php │ ├── FileIsNotReadable.php │ └── ReflectionException.php ├── FunctionReflection.php ├── Internal │ ├── Annotated │ │ ├── AnnotatedDeclarations.php │ │ ├── AnnotatedDeclarationsDiscoverer.php │ │ └── NullAnnotatedDeclarationsDiscoverer.php │ ├── Cache │ │ ├── Cache.php │ │ ├── InMemoryPsr16Cache.php │ │ └── InvalidCacheKey.php │ ├── CompleteReflection │ │ ├── CleanUpInternallyDefined.php │ │ ├── CompleteEnum.php │ │ ├── CopyPromotedParameterToProperty.php │ │ ├── RemoveCode.php │ │ ├── RemoveContext.php │ │ ├── SetAttributeRepeated.php │ │ ├── SetClassCloneable.php │ │ ├── SetInterfaceMethodAbstract.php │ │ ├── SetParameterIndex.php │ │ ├── SetParameterOptional.php │ │ ├── SetReadonlyClassPropertyReadonly.php │ │ ├── SetStringableInterface.php │ │ └── SetTemplateIndex.php │ ├── ConstantExpression │ │ ├── ArrayElement.php │ │ ├── ArrayExpression.php │ │ ├── ArrayFetch.php │ │ ├── ArrayFetchCoalesce.php │ │ ├── BinaryOperation.php │ │ ├── ClassConstantFetch.php │ │ ├── CompilationContext.php │ │ ├── ConstantFetch.php │ │ ├── Expression.php │ │ ├── Instantiation.php │ │ ├── MagicClassInTrait.php │ │ ├── ParentClass.php │ │ ├── ParentClassInTrait.php │ │ ├── SelfClass.php │ │ ├── SelfClassInTrait.php │ │ ├── Ternary.php │ │ ├── UnaryOperation.php │ │ ├── Value.php │ │ └── Values.php │ ├── Context │ │ ├── Context.php │ │ ├── ContextProvider.php │ │ └── ContextVisitor.php │ ├── Data.php │ ├── Data │ │ ├── AliasTypeKey.php │ │ ├── ArgumentsExpressionKey.php │ │ ├── AttributeClassNameKey.php │ │ ├── AttributesKey.php │ │ ├── BackingTypeKey.php │ │ ├── BackingValueExpressionKey.php │ │ ├── BoolKeys.php │ │ ├── ChangeDetectorKey.php │ │ ├── ClassKind.php │ │ ├── ClassKindKey.php │ │ ├── CodeKey.php │ │ ├── ConstraintKey.php │ │ ├── ContextKey.php │ │ ├── DeclaringClassIdKey.php │ │ ├── DefaultValueExpressionKey.php │ │ ├── DeprecationKey.php │ │ ├── FileKey.php │ │ ├── InterfacesKey.php │ │ ├── LocationKey.php │ │ ├── NamedDataKeys.php │ │ ├── NamespaceKey.php │ │ ├── ParameterIndexKey.php │ │ ├── ParentsKey.php │ │ ├── PassedBy.php │ │ ├── PassedByKey.php │ │ ├── PhpDocKey.php │ │ ├── PhpExtensionKey.php │ │ ├── ThrowsTypeKey.php │ │ ├── TraitMethodAlias.php │ │ ├── TraitMethodAliasesKey.php │ │ ├── TraitMethodPrecedenceKey.php │ │ ├── TypeData.php │ │ ├── TypeDataKeys.php │ │ ├── UnresolvedInterfacesKey.php │ │ ├── UnresolvedParentKey.php │ │ ├── UnresolvedTraitsKey.php │ │ ├── UsePhpDocsKey.php │ │ ├── ValueExpressionKey.php │ │ ├── VarianceKey.php │ │ ├── Visibility.php │ │ └── VisibilityKey.php │ ├── Hook │ │ ├── ClassHook.php │ │ ├── ConstantHook.php │ │ ├── FunctionHook.php │ │ ├── HookPriorities.php │ │ └── Hooks.php │ ├── Inheritance │ │ ├── ClassInheritance.php │ │ ├── MethodInheritance.php │ │ ├── PropertyInheritance.php │ │ ├── ResolveClassInheritance.php │ │ ├── TypeInheritance.php │ │ └── TypeResolvers.php │ ├── Misc │ │ └── NonSerializable.php │ ├── NativeAdapter │ │ ├── AttributeAdapter.php │ │ ├── ClassAdapter.php │ │ ├── ClassConstantAdapter.php │ │ ├── EnumAdapter.php │ │ ├── EnumBackedCaseAdapter.php │ │ ├── EnumUnitCaseAdapter.php │ │ ├── FunctionAdapter.php │ │ ├── IntersectionTypeAdapter.php │ │ ├── MethodAdapter.php │ │ ├── NamedTypeAdapter.php │ │ ├── NativeTraitInfo.php │ │ ├── NativeTraitInfoKey.php │ │ ├── NonConvertableType.php │ │ ├── ParameterAdapter.php │ │ ├── PropertyAdapter.php │ │ ├── ToNativeTypeConverter.php │ │ └── UnionTypeAdapter.php │ ├── NativeReflector │ │ ├── DefinedConstantReflector.php │ │ └── NativeReflectionBasedReflector.php │ ├── PhpDoc │ │ ├── AlwaysTrimmingConstExprParser.php │ │ ├── InvalidPhpDocType.php │ │ ├── NamedObjectTypeDestructurizer.php │ │ ├── PhpDoc.php │ │ ├── PhpDocConstantExpressionCompiler.php │ │ ├── PhpDocParser.php │ │ ├── PhpDocReflector.php │ │ ├── PhpDocTagPrioritizer.php │ │ ├── PhpDocTypeReflector.php │ │ └── PrefixBasedPhpDocTagPrioritizer.php │ ├── PhpParser │ │ ├── CodeReflector.php │ │ ├── CollectIdReflectorsVisitor.php │ │ ├── ConstantExpressionCompiler.php │ │ ├── ConstantExpressionTypeReflector.php │ │ ├── FixNodeLocationVisitor.php │ │ ├── GeneratorVisitor.php │ │ ├── NameParser.php │ │ ├── NodeContextAttribute.php │ │ ├── NodeReflector.php │ │ ├── PhpParserChecker.php │ │ └── UnresolvedConstantType.php │ ├── Type │ │ └── IsNativeTypeNullable.php │ └── functions.php ├── KeyIsNotDefined.php ├── Location.php ├── Locator │ ├── AnonymousLocator.php │ ├── ComposerLocator.php │ ├── ConstantLocator.php │ ├── FileAnonymousLocator.php │ ├── Locators.php │ ├── NamedClassLocator.php │ ├── NamedFunctionLocator.php │ ├── NativeReflectionClassLocator.php │ ├── NativeReflectionFunctionLocator.php │ ├── NoSymfonyPolyfillLocator.php │ ├── OnlyLoadedClassLocator.php │ ├── Resource.php │ └── ScannedResourceLocator.php ├── MethodReflection.php ├── ModifierKind.php ├── ParameterReflection.php ├── PropertyReflection.php ├── ReflectionCollections.php ├── TemplateReflection.php ├── TypeKind.php └── TyphoonReflector.php └── tools ├── composer-require-checker ├── composer.json └── composer.lock ├── composer-unused ├── composer.json └── composer.lock ├── infection ├── composer.json └── composer.lock └── psalm ├── composer.json └── composer.lock /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/composer.json -------------------------------------------------------------------------------- /docs/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/docs/caching.md -------------------------------------------------------------------------------- /docs/implementing_custom_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/docs/implementing_custom_types.md -------------------------------------------------------------------------------- /docs/native_adapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/docs/native_adapters.md -------------------------------------------------------------------------------- /docs/php_doc_properties_and_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/docs/php_doc_properties_and_methods.md -------------------------------------------------------------------------------- /docs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/docs/types.md -------------------------------------------------------------------------------- /infection.json5.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/infection.json5.dist -------------------------------------------------------------------------------- /src/AliasReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/AliasReflection.php -------------------------------------------------------------------------------- /src/Annotated/CustomTypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Annotated/CustomTypeResolver.php -------------------------------------------------------------------------------- /src/Annotated/CustomTypeResolvers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Annotated/CustomTypeResolvers.php -------------------------------------------------------------------------------- /src/Annotated/NullCustomTypeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Annotated/NullCustomTypeResolver.php -------------------------------------------------------------------------------- /src/Annotated/TypeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Annotated/TypeContext.php -------------------------------------------------------------------------------- /src/AttributeReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/AttributeReflection.php -------------------------------------------------------------------------------- /src/Cache/FreshCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Cache/FreshCache.php -------------------------------------------------------------------------------- /src/ClassConstantReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ClassConstantReflection.php -------------------------------------------------------------------------------- /src/ClassReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ClassReflection.php -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/ConstantReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ConstantReflection.php -------------------------------------------------------------------------------- /src/Deprecation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Deprecation.php -------------------------------------------------------------------------------- /src/Exception/DeclarationNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Exception/DeclarationNotFound.php -------------------------------------------------------------------------------- /src/Exception/FileIsNotReadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Exception/FileIsNotReadable.php -------------------------------------------------------------------------------- /src/Exception/ReflectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Exception/ReflectionException.php -------------------------------------------------------------------------------- /src/FunctionReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/FunctionReflection.php -------------------------------------------------------------------------------- /src/Internal/Annotated/AnnotatedDeclarations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Annotated/AnnotatedDeclarations.php -------------------------------------------------------------------------------- /src/Internal/Annotated/AnnotatedDeclarationsDiscoverer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Annotated/AnnotatedDeclarationsDiscoverer.php -------------------------------------------------------------------------------- /src/Internal/Annotated/NullAnnotatedDeclarationsDiscoverer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Annotated/NullAnnotatedDeclarationsDiscoverer.php -------------------------------------------------------------------------------- /src/Internal/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Cache/Cache.php -------------------------------------------------------------------------------- /src/Internal/Cache/InMemoryPsr16Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Cache/InMemoryPsr16Cache.php -------------------------------------------------------------------------------- /src/Internal/Cache/InvalidCacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Cache/InvalidCacheKey.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/CleanUpInternallyDefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/CleanUpInternallyDefined.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/CompleteEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/CompleteEnum.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/CopyPromotedParameterToProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/CopyPromotedParameterToProperty.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/RemoveCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/RemoveCode.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/RemoveContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/RemoveContext.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetAttributeRepeated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetAttributeRepeated.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetClassCloneable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetClassCloneable.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetInterfaceMethodAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetInterfaceMethodAbstract.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetParameterIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetParameterIndex.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetParameterOptional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetParameterOptional.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetReadonlyClassPropertyReadonly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetReadonlyClassPropertyReadonly.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetStringableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetStringableInterface.php -------------------------------------------------------------------------------- /src/Internal/CompleteReflection/SetTemplateIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/CompleteReflection/SetTemplateIndex.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ArrayElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ArrayElement.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ArrayExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ArrayExpression.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ArrayFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ArrayFetch.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ArrayFetchCoalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ArrayFetchCoalesce.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/BinaryOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/BinaryOperation.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ClassConstantFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ClassConstantFetch.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/CompilationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/CompilationContext.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ConstantFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ConstantFetch.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/Expression.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/Instantiation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/Instantiation.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/MagicClassInTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/MagicClassInTrait.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ParentClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ParentClass.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/ParentClassInTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/ParentClassInTrait.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/SelfClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/SelfClass.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/SelfClassInTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/SelfClassInTrait.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/Ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/Ternary.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/UnaryOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/UnaryOperation.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/Value.php -------------------------------------------------------------------------------- /src/Internal/ConstantExpression/Values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/ConstantExpression/Values.php -------------------------------------------------------------------------------- /src/Internal/Context/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Context/Context.php -------------------------------------------------------------------------------- /src/Internal/Context/ContextProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Context/ContextProvider.php -------------------------------------------------------------------------------- /src/Internal/Context/ContextVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Context/ContextVisitor.php -------------------------------------------------------------------------------- /src/Internal/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data.php -------------------------------------------------------------------------------- /src/Internal/Data/AliasTypeKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/AliasTypeKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ArgumentsExpressionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ArgumentsExpressionKey.php -------------------------------------------------------------------------------- /src/Internal/Data/AttributeClassNameKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/AttributeClassNameKey.php -------------------------------------------------------------------------------- /src/Internal/Data/AttributesKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/AttributesKey.php -------------------------------------------------------------------------------- /src/Internal/Data/BackingTypeKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/BackingTypeKey.php -------------------------------------------------------------------------------- /src/Internal/Data/BackingValueExpressionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/BackingValueExpressionKey.php -------------------------------------------------------------------------------- /src/Internal/Data/BoolKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/BoolKeys.php -------------------------------------------------------------------------------- /src/Internal/Data/ChangeDetectorKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ChangeDetectorKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ClassKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ClassKind.php -------------------------------------------------------------------------------- /src/Internal/Data/ClassKindKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ClassKindKey.php -------------------------------------------------------------------------------- /src/Internal/Data/CodeKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/CodeKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ConstraintKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ConstraintKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ContextKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ContextKey.php -------------------------------------------------------------------------------- /src/Internal/Data/DeclaringClassIdKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/DeclaringClassIdKey.php -------------------------------------------------------------------------------- /src/Internal/Data/DefaultValueExpressionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/DefaultValueExpressionKey.php -------------------------------------------------------------------------------- /src/Internal/Data/DeprecationKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/DeprecationKey.php -------------------------------------------------------------------------------- /src/Internal/Data/FileKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/FileKey.php -------------------------------------------------------------------------------- /src/Internal/Data/InterfacesKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/InterfacesKey.php -------------------------------------------------------------------------------- /src/Internal/Data/LocationKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/LocationKey.php -------------------------------------------------------------------------------- /src/Internal/Data/NamedDataKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/NamedDataKeys.php -------------------------------------------------------------------------------- /src/Internal/Data/NamespaceKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/NamespaceKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ParameterIndexKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ParameterIndexKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ParentsKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ParentsKey.php -------------------------------------------------------------------------------- /src/Internal/Data/PassedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/PassedBy.php -------------------------------------------------------------------------------- /src/Internal/Data/PassedByKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/PassedByKey.php -------------------------------------------------------------------------------- /src/Internal/Data/PhpDocKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/PhpDocKey.php -------------------------------------------------------------------------------- /src/Internal/Data/PhpExtensionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/PhpExtensionKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ThrowsTypeKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ThrowsTypeKey.php -------------------------------------------------------------------------------- /src/Internal/Data/TraitMethodAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/TraitMethodAlias.php -------------------------------------------------------------------------------- /src/Internal/Data/TraitMethodAliasesKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/TraitMethodAliasesKey.php -------------------------------------------------------------------------------- /src/Internal/Data/TraitMethodPrecedenceKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/TraitMethodPrecedenceKey.php -------------------------------------------------------------------------------- /src/Internal/Data/TypeData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/TypeData.php -------------------------------------------------------------------------------- /src/Internal/Data/TypeDataKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/TypeDataKeys.php -------------------------------------------------------------------------------- /src/Internal/Data/UnresolvedInterfacesKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/UnresolvedInterfacesKey.php -------------------------------------------------------------------------------- /src/Internal/Data/UnresolvedParentKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/UnresolvedParentKey.php -------------------------------------------------------------------------------- /src/Internal/Data/UnresolvedTraitsKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/UnresolvedTraitsKey.php -------------------------------------------------------------------------------- /src/Internal/Data/UsePhpDocsKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/UsePhpDocsKey.php -------------------------------------------------------------------------------- /src/Internal/Data/ValueExpressionKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/ValueExpressionKey.php -------------------------------------------------------------------------------- /src/Internal/Data/VarianceKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/VarianceKey.php -------------------------------------------------------------------------------- /src/Internal/Data/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/Visibility.php -------------------------------------------------------------------------------- /src/Internal/Data/VisibilityKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Data/VisibilityKey.php -------------------------------------------------------------------------------- /src/Internal/Hook/ClassHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Hook/ClassHook.php -------------------------------------------------------------------------------- /src/Internal/Hook/ConstantHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Hook/ConstantHook.php -------------------------------------------------------------------------------- /src/Internal/Hook/FunctionHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Hook/FunctionHook.php -------------------------------------------------------------------------------- /src/Internal/Hook/HookPriorities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Hook/HookPriorities.php -------------------------------------------------------------------------------- /src/Internal/Hook/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Hook/Hooks.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/ClassInheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/ClassInheritance.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/MethodInheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/MethodInheritance.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/PropertyInheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/PropertyInheritance.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/ResolveClassInheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/ResolveClassInheritance.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/TypeInheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/TypeInheritance.php -------------------------------------------------------------------------------- /src/Internal/Inheritance/TypeResolvers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Inheritance/TypeResolvers.php -------------------------------------------------------------------------------- /src/Internal/Misc/NonSerializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Misc/NonSerializable.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/AttributeAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/AttributeAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/ClassAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/ClassAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/ClassConstantAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/ClassConstantAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/EnumAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/EnumAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/EnumBackedCaseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/EnumBackedCaseAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/EnumUnitCaseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/EnumUnitCaseAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/FunctionAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/FunctionAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/IntersectionTypeAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/IntersectionTypeAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/MethodAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/MethodAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/NamedTypeAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/NamedTypeAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/NativeTraitInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/NativeTraitInfo.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/NativeTraitInfoKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/NativeTraitInfoKey.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/NonConvertableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/NonConvertableType.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/ParameterAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/ParameterAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/PropertyAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/PropertyAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/ToNativeTypeConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/ToNativeTypeConverter.php -------------------------------------------------------------------------------- /src/Internal/NativeAdapter/UnionTypeAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeAdapter/UnionTypeAdapter.php -------------------------------------------------------------------------------- /src/Internal/NativeReflector/DefinedConstantReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeReflector/DefinedConstantReflector.php -------------------------------------------------------------------------------- /src/Internal/NativeReflector/NativeReflectionBasedReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/NativeReflector/NativeReflectionBasedReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/AlwaysTrimmingConstExprParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/AlwaysTrimmingConstExprParser.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/InvalidPhpDocType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/InvalidPhpDocType.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/NamedObjectTypeDestructurizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/NamedObjectTypeDestructurizer.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDoc.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDocConstantExpressionCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDocConstantExpressionCompiler.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDocParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDocParser.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDocReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDocReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDocTagPrioritizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDocTagPrioritizer.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PhpDocTypeReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PhpDocTypeReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpDoc/PrefixBasedPhpDocTagPrioritizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpDoc/PrefixBasedPhpDocTagPrioritizer.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/CodeReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/CodeReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/CollectIdReflectorsVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/CollectIdReflectorsVisitor.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/ConstantExpressionCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/ConstantExpressionCompiler.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/ConstantExpressionTypeReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/ConstantExpressionTypeReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/FixNodeLocationVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/FixNodeLocationVisitor.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/GeneratorVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/GeneratorVisitor.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/NameParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/NameParser.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/NodeContextAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/NodeContextAttribute.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/NodeReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/NodeReflector.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/PhpParserChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/PhpParserChecker.php -------------------------------------------------------------------------------- /src/Internal/PhpParser/UnresolvedConstantType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/PhpParser/UnresolvedConstantType.php -------------------------------------------------------------------------------- /src/Internal/Type/IsNativeTypeNullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/Type/IsNativeTypeNullable.php -------------------------------------------------------------------------------- /src/Internal/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Internal/functions.php -------------------------------------------------------------------------------- /src/KeyIsNotDefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/KeyIsNotDefined.php -------------------------------------------------------------------------------- /src/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Location.php -------------------------------------------------------------------------------- /src/Locator/AnonymousLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/AnonymousLocator.php -------------------------------------------------------------------------------- /src/Locator/ComposerLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/ComposerLocator.php -------------------------------------------------------------------------------- /src/Locator/ConstantLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/ConstantLocator.php -------------------------------------------------------------------------------- /src/Locator/FileAnonymousLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/FileAnonymousLocator.php -------------------------------------------------------------------------------- /src/Locator/Locators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/Locators.php -------------------------------------------------------------------------------- /src/Locator/NamedClassLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/NamedClassLocator.php -------------------------------------------------------------------------------- /src/Locator/NamedFunctionLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/NamedFunctionLocator.php -------------------------------------------------------------------------------- /src/Locator/NativeReflectionClassLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/NativeReflectionClassLocator.php -------------------------------------------------------------------------------- /src/Locator/NativeReflectionFunctionLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/NativeReflectionFunctionLocator.php -------------------------------------------------------------------------------- /src/Locator/NoSymfonyPolyfillLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/NoSymfonyPolyfillLocator.php -------------------------------------------------------------------------------- /src/Locator/OnlyLoadedClassLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/OnlyLoadedClassLocator.php -------------------------------------------------------------------------------- /src/Locator/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/Resource.php -------------------------------------------------------------------------------- /src/Locator/ScannedResourceLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/Locator/ScannedResourceLocator.php -------------------------------------------------------------------------------- /src/MethodReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/MethodReflection.php -------------------------------------------------------------------------------- /src/ModifierKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ModifierKind.php -------------------------------------------------------------------------------- /src/ParameterReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ParameterReflection.php -------------------------------------------------------------------------------- /src/PropertyReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/PropertyReflection.php -------------------------------------------------------------------------------- /src/ReflectionCollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/ReflectionCollections.php -------------------------------------------------------------------------------- /src/TemplateReflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/TemplateReflection.php -------------------------------------------------------------------------------- /src/TypeKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/TypeKind.php -------------------------------------------------------------------------------- /src/TyphoonReflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/src/TyphoonReflector.php -------------------------------------------------------------------------------- /tools/composer-require-checker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/composer-require-checker/composer.json -------------------------------------------------------------------------------- /tools/composer-require-checker/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/composer-require-checker/composer.lock -------------------------------------------------------------------------------- /tools/composer-unused/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/composer-unused/composer.json -------------------------------------------------------------------------------- /tools/composer-unused/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/composer-unused/composer.lock -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/infection/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/infection/composer.lock -------------------------------------------------------------------------------- /tools/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/psalm/composer.json -------------------------------------------------------------------------------- /tools/psalm/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typhoon-php/reflection/HEAD/tools/psalm/composer.lock --------------------------------------------------------------------------------