| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 1 | public function scope(string $filePath, string $contents, string $prefix, array $patchers, Whitelist $whitelist): string |
|
| 37 | { |
||
| 38 | 1 | if (array_key_exists($filePath, $this->filePaths)) { |
|
| 39 | 1 | return $contents; |
|
| 40 | } |
||
| 41 | |||
| 42 | 1 | return $this->decoratedScoper->scope($filePath, $contents, $prefix, $patchers, $whitelist); |
|
| 43 | } |
||
| 44 | } |
||
| 45 |