123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /*
- * This file is part of ibrand/balace.
- *
- * (c) GuoJiangClub <https://www.ibrand.cc>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace GuoJiangClub\Component\Balance\Test;
- use Illuminate\Support\ServiceProvider;
- class BalanceServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap the application services.
- */
- public function boot()
- {
- if ($this->app->runningInConsole()) {
- $this->registerMigrations();
- }
- }
- /**
- * Register Passport's migration files.
- */
- protected function registerMigrations()
- {
- return $this->loadMigrationsFrom(__DIR__.'/database');
- }
- /**
- * Register the service provider.
- */
- public function register()
- {
- }
- }
|