Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class RepositoryProvider extends ServiceProvider |
||
20 | { |
||
21 | private const REPOSITORIES = [ |
||
22 | User::class => UserRepository::class, |
||
23 | Tag::class => TagRepository::class, |
||
24 | Comment::class => CommentRepository::class, |
||
25 | Post::class => PostRepository::class |
||
26 | ]; |
||
27 | |||
28 | public function register(Container $container): void |
||
36 |