Skip to content

Commit 422c8d8

Browse files
committed
feature #59114 [ErrorHandler] support non-empty-string/non-empty-list when patching return types (xabbuh)
This PR was merged into the 7.3 branch. Discussion ---------- [ErrorHandler] support non-empty-string/non-empty-list when patching return types | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | no | New feature? | yes | Deprecations? | no | Issues | | License | MIT see the failures in #59075 Commits ------- 01c78b3b30 support non-empty-string/non-empty-list when patching return types
2 parents 6150b89 + e0a4407 commit 422c8d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

DebugClassLoader.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,14 @@ class DebugClassLoader
6868
'iterable' => 'iterable',
6969
'object' => 'object',
7070
'string' => 'string',
71+
'non-empty-string' => 'string',
7172
'self' => 'self',
7273
'parent' => 'parent',
7374
'mixed' => 'mixed',
7475
'static' => 'static',
7576
'$this' => 'static',
7677
'list' => 'array',
78+
'non-empty-list' => 'array',
7779
'class-string' => 'string',
7880
'never' => 'never',
7981
];

0 commit comments

Comments
 (0)