| Total Complexity | 5 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class AbstractServiceProvider implements ServiceProviderContract |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var array $singletons |
||
| 13 | */ |
||
| 14 | protected $singletons = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \Illuminate\Container\Container $container |
||
| 18 | */ |
||
| 19 | protected $container; |
||
| 20 | |||
| 21 | public function __construct() |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | public function register(): void |
||
| 33 | |||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * bindSinletons. |
||
| 38 | * |
||
| 39 | * @access protected |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | protected function bindSinletons(): void |
||
| 53 |