|
@@ -24,20 +24,20 @@ |
|
|
block discarded – undo |
|
24
|
24
|
use Uxmp\Core\Orm\Repository\UserRepositoryInterface; |
|
25
|
25
|
|
|
26
|
26
|
return [ |
|
27
|
|
- ArtistRepositoryInterface::class => fn (ContainerInterface $c): ArtistRepositoryInterface => |
|
|
27
|
+ ArtistRepositoryInterface::class => fn(ContainerInterface $c): ArtistRepositoryInterface => |
|
28
|
28
|
$c->get(EntityManagerInterface::class)->getRepository(Artist::class), |
|
29
|
|
- AlbumRepositoryInterface::class => fn (ContainerInterface $c): AlbumRepositoryInterface => |
|
|
29
|
+ AlbumRepositoryInterface::class => fn(ContainerInterface $c): AlbumRepositoryInterface => |
|
30
|
30
|
$c->get(EntityManagerInterface::class)->getRepository(Album::class), |
|
31
|
|
- SongRepositoryInterface::class => fn (ContainerInterface $c): SongRepositoryInterface => |
|
|
31
|
+ SongRepositoryInterface::class => fn(ContainerInterface $c): SongRepositoryInterface => |
|
32
|
32
|
$c->get(EntityManagerInterface::class)->getRepository(Song::class), |
|
33
|
|
- DiscRepositoryInterface::class => fn (ContainerInterface $c): DiscRepositoryInterface => |
|
|
33
|
+ DiscRepositoryInterface::class => fn(ContainerInterface $c): DiscRepositoryInterface => |
|
34
|
34
|
$c->get(EntityManagerInterface::class)->getRepository(Disc::class), |
|
35
|
|
- SessionRepositoryInterface::class => fn (ContainerInterface $c): SessionRepositoryInterface => |
|
|
35
|
+ SessionRepositoryInterface::class => fn(ContainerInterface $c): SessionRepositoryInterface => |
|
36
|
36
|
$c->get(EntityManagerInterface::class)->getRepository(Session::class), |
|
37
|
|
- UserRepositoryInterface::class => fn (ContainerInterface $c): UserRepositoryInterface => |
|
|
37
|
+ UserRepositoryInterface::class => fn(ContainerInterface $c): UserRepositoryInterface => |
|
38
|
38
|
$c->get(EntityManagerInterface::class)->getRepository(User::class), |
|
39
|
|
- CatalogRepositoryInterface::class => fn (ContainerInterface $c): CatalogRepositoryInterface => |
|
|
39
|
+ CatalogRepositoryInterface::class => fn(ContainerInterface $c): CatalogRepositoryInterface => |
|
40
|
40
|
$c->get(EntityManagerInterface::class)->getRepository(Catalog::class), |
|
41
|
|
- FavoriteRepositoryInterface::class => fn (ContainerInterface $c): FavoriteRepositoryInterface => |
|
|
41
|
+ FavoriteRepositoryInterface::class => fn(ContainerInterface $c): FavoriteRepositoryInterface => |
|
42
|
42
|
$c->get(EntityManagerInterface::class)->getRepository(Favorite::class), |
|
43
|
43
|
]; |