love_php/app/Providers/QrcodeRectServiceProvider.php

26 lines
371 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Services\QrcodeRectService;
class QrcodeRectServiceProvider extends ServiceProvider
{
public function boot()
{
}
public function register()
{
$this->app->singleton('qrcode_rect', function(){
return new QrcodeRectService();
});
}
}