| 1 | <?php |
||
| 20 | final class ConfigurableScoper implements Scoper |
||
| 21 | { |
||
| 22 | private $decoratedScoper; |
||
| 23 | |||
| 24 | public function __construct(Scoper $decoratedScoper) |
||
| 28 | |||
| 29 | public function withWhitelistedFiles(string ...$whitelistedFiles): self |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritdoc |
||
| 38 | */ |
||
| 39 | public function scope(string $filePath, string $contents, string $prefix, array $patchers, Whitelist $whitelist): string |
||
| 43 | } |
||
| 44 |