File "QrCode.php"
Full Path: /home/bettaeza/flyinsyria.com/simplesoftwareio/simple-qrcode/src/Facades/QrCode.php
File size: 428 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace SimpleSoftwareIO\QrCode\Facades;
use Illuminate\Support\Facades\Facade;
use SimpleSoftwareIO\QrCode\Generator;
class QrCode extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
self::clearResolvedInstance(Generator::class);
return Generator::class;
}
}