File tree 3 files changed +15
-4
lines changed
src/Reflection/BetterReflection
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ parameters:
257
257
editorUrlTitle : null
258
258
errorFormat : null
259
259
sysGetTempDir : ::sys_get_temp_dir ()
260
+ sourceLocatorPlaygroundMode : false
260
261
pro :
261
262
dnsServers :
262
263
- '1.1.1.2'
@@ -2063,6 +2064,7 @@ services:
2063
2064
analysedPaths : %analysedPaths%
2064
2065
composerAutoloaderProjectPaths : %composerAutoloaderProjectPaths%
2065
2066
analysedPathsFromConfig : %analysedPathsFromConfig%
2067
+ playgroundMode : %sourceLocatorPlaygroundMode%
2066
2068
2067
2069
-
2068
2070
implement : PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory
Original file line number Diff line number Diff line change @@ -224,6 +224,9 @@ parametersSchema:
224
224
env : arrayOf (string (), anyOf (int (), string ()))
225
225
sysGetTempDir : string ()
226
226
227
+ # playground mode
228
+ sourceLocatorPlaygroundMode : bool ()
229
+
227
230
# irrelevant Nette parameters
228
231
debugMode : bool ()
229
232
productionMode : bool ()
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ public function __construct(
55
55
private array $ analysedPaths ,
56
56
private array $ composerAutoloaderProjectPaths ,
57
57
private array $ analysedPathsFromConfig ,
58
+ private bool $ playgroundMode , // makes all PHPStan classes in the PHAR discoverable with PSR-4
58
59
)
59
60
{
60
61
}
@@ -112,11 +113,16 @@ public function create(): SourceLocator
112
113
if (extension_loaded ('phar ' )) {
113
114
$ pharProtocolPath = Phar::running ();
114
115
if ($ pharProtocolPath !== '' ) {
116
+ $ mappings = [
117
+ 'PHPStan \\BetterReflection \\' => [$ pharProtocolPath . '/vendor/ondrejmirtes/better-reflection/src/ ' ],
118
+ ];
119
+ if ($ this ->playgroundMode ) {
120
+ $ mappings ['PHPStan \\' ] = [$ pharProtocolPath . '/src/ ' ];
121
+ } else {
122
+ $ mappings ['PHPStan \\Testing \\' ] = [$ pharProtocolPath . '/src/Testing/ ' ];
123
+ }
115
124
$ fileLocators [] = $ this ->optimizedPsrAutoloaderLocatorFactory ->create (
116
- Psr4Mapping::fromArrayMappings ([
117
- 'PHPStan \\Testing \\' => [$ pharProtocolPath . '/src/Testing/ ' ],
118
- 'PHPStan \\BetterReflection \\' => [$ pharProtocolPath . '/vendor/ondrejmirtes/better-reflection/src/ ' ],
119
- ]),
125
+ Psr4Mapping::fromArrayMappings ($ mappings ),
120
126
);
121
127
}
122
128
}
You can’t perform that action at this time.
0 commit comments