| 1 | <?php |
||
| 20 | class ServiceContainer extends ContainerBuilder |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Service container instance |
||
| 24 | * |
||
| 25 | * @var static |
||
| 26 | * @access private |
||
| 27 | */ |
||
| 28 | private static $instance; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get singleton instance |
||
| 32 | * |
||
| 33 | * @access public |
||
| 34 | * @return static |
||
| 35 | */ |
||
| 36 | 43 | public static function getInstance() |
|
| 51 | } |
||
| 52 |