1
0
Files
lkafu/vendor/simplesoftwareio/simple-qrcode/src/SimpleSoftwareIO/QrCode/Facades/QrCode.php
2020-08-06 14:50:07 +08:00

21 lines
352 B
PHP

<?php
namespace SimpleSoftwareIO\QrCode\Facades;
use Illuminate\Support\Facades\Facade;
class QrCode extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
self::clearResolvedInstance('qrcode');
return 'qrcode';
}
}