Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7fa14ea
Deprecate `TypeUtils::getDirectClassNames()`
herndlm Oct 26, 2022
c87256d
Get rid of `instanceof TypeWithClassName` in `IsAFunctionTypeSpecifyi…
herndlm Jan 4, 2023
40fa564
Get rid of `instanceof TypeWithClassName` in `ClosureType`
herndlm Jan 4, 2023
44db261
Get rid of `instanceof TypeWithClassName` in `ObjectType`
herndlm Jan 4, 2023
55280bb
Get rid of `instanceof TypeWithClassName` in `ObjectWithoutClassType`
herndlm Jan 4, 2023
a4e75bd
Get rid of `instanceof TypeWithClassName` in `StringAlwaysAcceptingOb…
herndlm Jan 4, 2023
6b61e95
Get rid of `instanceof TypeWithClassName` in `StringType`
herndlm Jan 4, 2023
b724d3a
Get rid of `instanceof TypeWithClassName` in `StaticMethodCallCheck`
herndlm Jan 9, 2023
6390e7a
Get rid of `instanceof TypeWithClassName` in `MissingCheckedException…
herndlm Jan 9, 2023
f25cdcf
Get rid of `instanceof TypeWithClassName` in `ThrowsVoid*WithExplicit…
herndlm Jan 9, 2023
b04bf97
Get rid of `instanceof TypeWithClassName` in `UnusedPrivateConstantRule`
herndlm Jan 9, 2023
67575b6
Get rid of `instanceof TypeWithClassName` in `ImpossibleCheckTypeHelper`
herndlm Jan 9, 2023
1c6deb1
Get rid of `instanceof TypeWithClassName` in `InstantiationRule`
herndlm Jan 9, 2023
a30e267
Get rid of `instanceof TypeWithClassName` in `ApiInstanceofRule`
herndlm Jan 9, 2023
fc8e156
Get rid of `instanceof TypeWithClassName` in `TypeSpecifier`
herndlm Jan 9, 2023
c0b1c8a
Get rid of `instanceof TypeWithClassName` in `NodeScopeResolver`
herndlm Jan 9, 2023
bdb550a
Get rid of `instanceof TypeWithClassName` in `MutatingScope` where po…
herndlm Jan 9, 2023
7849841
Get rid of `instanceof TypeWithClassName` in `GetClassDynamicReturnTy…
herndlm Jan 9, 2023
e1695a5
Get rid of `instanceof TypeWithClassName` in `GenericClassStringType`
herndlm Jan 9, 2023
43cb42d
Get rid of `instanceof TypeWithClassName` in `TypeNodeResolver`
herndlm Jan 9, 2023
b778089
Get rid of `instanceof TypeWithClassName` in `InitializerExprTypeReso…
herndlm Jan 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Analyser/DirectInternalScopeFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function create(
array $expressionTypes = [],
array $nativeExpressionTypes = [],
array $conditionalExpressions = [],
?string $inClosureBindScopeClass = null,
array $inClosureBindScopeClasses = [],
?ParametersAcceptor $anonymousFunctionReflection = null,
bool $inFirstLevelStatement = true,
array $currentlyAssignedExpressions = [],
Expand Down Expand Up @@ -90,7 +90,7 @@ public function create(
$expressionTypes,
$nativeExpressionTypes,
$conditionalExpressions,
$inClosureBindScopeClass,
$inClosureBindScopeClasses,
$anonymousFunctionReflection,
$inFirstLevelStatement,
$currentlyAssignedExpressions,
Expand Down
3 changes: 2 additions & 1 deletion src/Analyser/InternalScopeFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ interface InternalScopeFactory
* @param array<string, ExpressionTypeHolder> $expressionTypes
* @param array<string, ExpressionTypeHolder> $nativeExpressionTypes
* @param array<string, ConditionalExpressionHolder[]> $conditionalExpressions
* @param list<string> $inClosureBindScopeClasses
* @param array<string, true> $currentlyAssignedExpressions
* @param array<string, true> $currentlyAllowedUndefinedExpressions
* @param array<MethodReflection|FunctionReflection> $inFunctionCallsStack
Expand All @@ -25,7 +26,7 @@ public function create(
array $expressionTypes = [],
array $nativeExpressionTypes = [],
array $conditionalExpressions = [],
?string $inClosureBindScopeClass = null,
array $inClosureBindScopeClasses = [],
?ParametersAcceptor $anonymousFunctionReflection = null,
bool $inFirstLevelStatement = true,
array $currentlyAssignedExpressions = [],
Expand Down
4 changes: 2 additions & 2 deletions src/Analyser/LazyInternalScopeFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function create(
array $expressionTypes = [],
array $nativeExpressionTypes = [],
array $conditionalExpressions = [],
?string $inClosureBindScopeClass = null,
array $inClosureBindScopeClasses = [],
?ParametersAcceptor $anonymousFunctionReflection = null,
bool $inFirstLevelStatement = true,
array $currentlyAssignedExpressions = [],
Expand Down Expand Up @@ -86,7 +86,7 @@ public function create(
$expressionTypes,
$nativeExpressionTypes,
$conditionalExpressions,
$inClosureBindScopeClass,
$inClosureBindScopeClasses,
$anonymousFunctionReflection,
$inFirstLevelStatement,
$currentlyAssignedExpressions,
Expand Down
Loading