| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class ServiceProvider extends \League\Container\ServiceProvider\AbstractServiceProvider { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Provides. |
||
| 26 | * |
||
| 27 | * @var string[] |
||
| 28 | */ |
||
| 29 | protected $provides = [ |
||
| 30 | PostInterface::class, |
||
| 31 | TermInterface::class, |
||
| 32 | ]; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Register. |
||
| 36 | * |
||
| 37 | * @link https://github.com/thephpleague/container/issues/159 |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function register() { |
||
| 48 |