| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | trait ServiceInstance |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The service instance. |
||
| 9 | * |
||
| 10 | * @var mixed |
||
| 11 | */ |
||
| 12 | private static $_serviceInstance = null; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Get the service instance. |
||
| 16 | * Overrides the default method, calls the container once, and saves the service instance locally. |
||
| 17 | * |
||
| 18 | * @return mixed |
||
| 19 | */ |
||
| 20 | public static function instance() |
||
| 25 |