1 | <?php |
||
13 | class DatabaseServiceProvider extends AbstractServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | protected $provides = [ |
||
19 | 'entityManager', |
||
20 | PostRepositoryInterface::class, |
||
21 | CategoryRepositoryInterface::class |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function register() |
||
55 | } |
||
56 |