| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class ServiceProvider extends \League\Container\ServiceProvider\AbstractServiceProvider { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Provides. |
||
| 19 | * |
||
| 20 | * @var string[] |
||
| 21 | */ |
||
| 22 | protected $provides = [ |
||
| 23 | PostInterface::class, |
||
| 24 | TermInterface::class, |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Register. |
||
| 29 | * |
||
| 30 | * @return void |
||
| 31 | */ |
||
| 32 | public function register() { |
||
| 37 |