JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "QrCodeServiceProvider.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/simplesoftwareio/simple-qrcode/src/QrCodeServiceProvider.php
File size: 507 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace SimpleSoftwareIO\QrCode;
use Illuminate\Support\ServiceProvider;
class QrCodeServiceProvider extends ServiceProvider
{
/**
* Register the service provider.
*/
public function register()
{
$this->app->bind('qrcode', function () {
return new Generator();
});
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [Generator::class];
}
}