generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename AugmentedOTP as per old original class to keep some relevance Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Create AugmentedOTP.php Delete LaravelOtpGenerator.php Update AugmentedOTP.php Revert "Update AugmentedOTP.php" This reverts commit aca58e6. Revert "Create AugmentedOTP.php" This reverts commit fb8a6c4. Update composer.json Update composer.json Revert "Update LaravelOtpGenerator.php" This reverts commit 2ca076a. Update LaravelOtpGenerator.php AugmentedOTP Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Fix styling Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update LaravelOtpGenerator.php Update composer.json f Fix styling Update LaravelOtpGenerator.php
- Loading branch information
Showing
3 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
namespace ClarityTech\LaravelOtpGenerator\Facades; | ||
|
||
use ClarityTech\LaravelOtpGenerator\LaravelOtpGenerator; | ||
use Illuminate\Support\Facades\Facade; | ||
|
||
class AugmentedOTP extends Facade | ||
{ | ||
protected static function getFacadeAccessor() | ||
{ | ||
return LaravelOtpGenerator::class; | ||
} | ||
} |
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