| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace App\Providers;
- use App\Services\AIGeneration\AIImageGenerationService;
- use App\Services\VolcEngineService;
- use Illuminate\Support\Facades\Validator;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Register any application services.
- *
- * @return void
- */
- public function register()
- {
- //
- $this->app->singleton(AIImageGenerationService::class, function ($app) {
- return new AIImageGenerationService($app->make(VolcEngineService::class));
- });
- }
- /**
- * Bootstrap any application services.
- *
- * @return void
- */
- public function boot()
- {
- //
- Validator::extend('mobile', function ($attribute, $value, $parameters, $validator) {
- return $validator->validateRegex(
- $attribute,
- $value,
- ['/^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|198|199|(147))\d{8}$/']
- );
- });
- }
- }
|