Skip to content

Commit 7d1bde4

Browse files
committed
BetterReflectionSourceLocator - playground mode
1 parent ed7524a commit 7d1bde4

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

conf/config.neon

+2
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ parameters:
257257
editorUrlTitle: null
258258
errorFormat: null
259259
sysGetTempDir: ::sys_get_temp_dir()
260+
sourceLocatorPlaygroundMode: false
260261
pro:
261262
dnsServers:
262263
- '1.1.1.2'
@@ -2063,6 +2064,7 @@ services:
20632064
analysedPaths: %analysedPaths%
20642065
composerAutoloaderProjectPaths: %composerAutoloaderProjectPaths%
20652066
analysedPathsFromConfig: %analysedPathsFromConfig%
2067+
playgroundMode: %sourceLocatorPlaygroundMode%
20662068

20672069
-
20682070
implement: PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory

conf/parametersSchema.neon

+3
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@ parametersSchema:
224224
env: arrayOf(string(), anyOf(int(), string()))
225225
sysGetTempDir: string()
226226

227+
# playground mode
228+
sourceLocatorPlaygroundMode: bool()
229+
227230
# irrelevant Nette parameters
228231
debugMode: bool()
229232
productionMode: bool()

src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php

+10-4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public function __construct(
5555
private array $analysedPaths,
5656
private array $composerAutoloaderProjectPaths,
5757
private array $analysedPathsFromConfig,
58+
private bool $playgroundMode, // makes all PHPStan classes in the PHAR discoverable with PSR-4
5859
)
5960
{
6061
}
@@ -112,11 +113,16 @@ public function create(): SourceLocator
112113
if (extension_loaded('phar')) {
113114
$pharProtocolPath = Phar::running();
114115
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+
}
115124
$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),
120126
);
121127
}
122128
}

0 commit comments

Comments
 (0)