Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
trouvaille
/
simplesoftwareio
/
simple-qrcode
/
src
/
Facades
:
QrCode.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }