12345678910111213141516171819202122232425 |
- <?php
- declare (strict_types=1);
- namespace app;
- use think\Service;
- class AppService extends Service
- {
- public function register()
- {
-
- if (!file_exists(public_path() . 'installed.lock')) {
- header("Location:/install.php");
- exit();
- }
- }
- public function boot()
- {
-
- }
- }
|