| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | trait DeprecatedMethodsTrait |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Register a shared binding in the container. |
||
| 14 | * |
||
| 15 | * @param string|array $abstract |
||
| 16 | * @param \Closure|string|null $concrete |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | * @deprecated Use new Share method instead |
||
| 20 | */ |
||
| 21 | public function singleton($abstract, $concrete = null) |
||
| 26 |