| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Database |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * 应用引用 |
||
| 13 | * |
||
| 14 | * @var Application |
||
| 15 | */ |
||
| 16 | protected static $application; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * 从应用创建表 |
||
| 20 | * |
||
| 21 | * @param Application $application |
||
| 22 | * @return void |
||
| 23 | */ |
||
| 24 | public static function loadApplication(Application $application) |
||
| 25 | { |
||
| 26 | static::$application = $application; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get 应用引用 |
||
| 31 | * |
||
| 32 | * @return Application |
||
| 33 | */ |
||
| 34 | public static function application() |
||
| 37 | } |
||
| 38 | } |