| 1 | <?php |
||
| 29 | abstract class Locator |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * Store loader object |
||
| 33 | **/ |
||
| 34 | |||
| 35 | private static $_loader = null; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Creates the instance of the class loader |
||
| 39 | * |
||
| 40 | * @param array $config Array with config flags to store |
||
| 41 | * |
||
| 42 | * @return object |
||
| 43 | **/ |
||
|
|
|||
| 44 | |||
| 45 | public static function start(array $config) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Provides the class loader object |
||
| 52 | * |
||
| 53 | * @return \csphere\core\service\Loader |
||
| 54 | **/ |
||
| 55 | |||
| 56 | public static function get() |
||
| 60 | } |
||
| 61 |