26 lines
371 B
PHP
26 lines
371 B
PHP
|
|
<?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();
|
||
|
|
});
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|