Last active
January 2, 2023 11:33
-
-
Save elishaukpong/fb2c56e8b9b5ecd8025746694dddd4d0 to your computer and use it in GitHub Desktop.
Compliment Facade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Facades; | |
use \Illuminate\Support\Facades\Facade; | |
class Compliment extends Facade | |
{ | |
/** | |
* Get the registered name of the component. | |
* | |
* @return string | |
*/ | |
protected static function getFacadeAccessor(): string | |
{ | |
return "compliment"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment