Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function create(SymbolsConfiguration $symbolsConfiguration): EnrichedReflector |
||
19 | { |
||
20 | $configuredReflector = $this->reflector->withSymbols( |
||
21 | $symbolsConfiguration->getExcludedClassNames(), |
||
22 | $symbolsConfiguration->getExcludedFunctionNames(), |
||
23 | $symbolsConfiguration->getExcludedConstantNames(), |
||
24 | ); |
||
25 | |||
26 | return new EnrichedReflector( |
||
27 | $configuredReflector, |
||
28 | $symbolsConfiguration, |
||
29 | ); |
||
32 |