| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function create(SymbolsConfiguration $symbolsConfiguration): EnrichedReflector |
||
| 29 | { |
||
| 30 | $configuredReflector = $this->reflector->withAdditionalSymbols( |
||
| 31 | $symbolsConfiguration->getExcludedClasses(), |
||
| 32 | $symbolsConfiguration->getExcludedFunctions(), |
||
| 33 | $symbolsConfiguration->getExcludedConstants(), |
||
| 34 | ); |
||
| 35 | |||
| 36 | return new EnrichedReflector( |
||
| 37 | $configuredReflector, |
||
| 38 | $symbolsConfiguration, |
||
| 39 | ); |
||
| 42 |