| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 85.71% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class ThemeProvider extends ServiceProvider |
||
| 13 | { |
||
| 14 | private array $pathMap; |
||
| 15 | private string $basePath; |
||
| 16 | private string $baseUrl; |
||
| 17 | |||
| 18 | 8 | public function __construct(array $pathMap = [], string $basePath = '', string $baseUrl = '') |
|
| 19 | { |
||
| 20 | 8 | $this->pathMap = $pathMap; |
|
| 21 | 8 | $this->basePath = $basePath; |
|
| 22 | 8 | $this->baseUrl = $baseUrl; |
|
| 23 | 8 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @suppress PhanAccessMethodProtected |
||
| 27 | */ |
||
| 28 | 8 | public function register(Container $container): void |
|
| 42 | 8 | ); |
|
| 43 | 8 | } |
|
| 45 |